_forms.scss 806 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .form-item{
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. label{
  6. padding-bottom: 0.5rem;
  7. }
  8. input{
  9. height: 2rem;
  10. width: 50%;
  11. }
  12. .description{
  13. width: 50%;
  14. }
  15. .form-submit{
  16. height: 4rem !important;
  17. margin-bottom: 1rem;
  18. font-size: 1.2rem;
  19. font-weight: 300;
  20. width: fit-content;
  21. @extend %buttonwithborder;
  22. @media (max-width:891px) {
  23. font-size: 1rem;
  24. }
  25. }
  26. #user-login-form{
  27. padding-left: 2rem;
  28. .form-item{
  29. flex-direction: row;
  30. padding-bottom: 1rem;
  31. padding-left: 0.2;
  32. width: 80%;
  33. label{
  34. padding-right: 0.5rem;
  35. flex: 1 1 auto;
  36. }
  37. }
  38. }
  39. #edit-persistent-login{
  40. height: 1.5rem;
  41. }
  42. #edit-field-telephone-0-phone{
  43. @extend %buttonwithborder;
  44. }