login.scss 970 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import "../../styles/variables";
  2. .login-page {
  3. position: absolute;
  4. top: 0;
  5. right: 0;
  6. bottom: 0;
  7. left: 0;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. padding: 1.5rem;
  12. background: $color-grey-3;
  13. .form-login {
  14. max-width: 32rem;
  15. width: 100%;
  16. padding: 1.5rem;
  17. background: $color-white;
  18. border-radius: 4px;
  19. box-shadow: 0 1rem 2rem rgba($color-black, 0.1);
  20. h3 {
  21. font-size: 2.4rem;
  22. color: $color-error;
  23. text-align: center;
  24. font-weight: $bold;
  25. margin-bottom: 2rem;
  26. }
  27. .form {
  28. label {
  29. display: block;
  30. width: 100%;
  31. margin-bottom: 2rem;
  32. span {
  33. font-size: 1.4rem;
  34. }
  35. input {
  36. width: 100%;
  37. }
  38. }
  39. }
  40. }
  41. }