_forms.scss 547 B

123456789101112131415161718192021222324252627282930313233
  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. .form-submit{
  13. background-color: white;
  14. border: solid black 1px;
  15. text-transform: uppercase;
  16. padding: 1rem;
  17. height: 5rem !important;
  18. margin-bottom: 1rem;
  19. font-size: 1.3rem;
  20. font-weight: 300;
  21. width: fit-content;
  22. }
  23. #user-login-form{
  24. .form-item{
  25. flex-direction: row;
  26. margin: 1rem;
  27. label{
  28. padding-right: 0.5rem;
  29. }
  30. }
  31. }