create-team.component.scss 747 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. form {
  2. width: 450px;
  3. .form-input {
  4. width: 100%;
  5. label {
  6. margin-bottom: 5px;
  7. font-size: 13px;
  8. span {
  9. margin: 0 5px;
  10. }
  11. }
  12. input,
  13. select {
  14. padding: 15px 20px;
  15. border-radius: 10px;
  16. box-shadow: 0px 5px 6px #2f2c8324;
  17. border: 0.5px solid #2e368f;
  18. border-radius: 10px;
  19. outline: none;
  20. }
  21. }
  22. }
  23. h2 {
  24. color: #2e368f !important;
  25. padding-top: 20px;
  26. font-size: 18px;
  27. }
  28. .button {
  29. padding: 10px 40px;
  30. width: inherit;
  31. background-color: #28abe3;
  32. color: #fff !important;
  33. border-radius: 10px;
  34. border: 1px solid #28abe3;
  35. cursor: pointer;
  36. font-weight: bold;
  37. font-size: 15px;
  38. transition: all 0.5s;
  39. &:hover {
  40. background-color: #1877f2;
  41. }
  42. }