auth.module.scss 566 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .auth-page {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. height: 100%;
  6. width: 100%;
  7. flex-direction: column;
  8. .auth-logo {
  9. transform: scale(1.4);
  10. }
  11. .auth-title {
  12. font-size: 24px;
  13. font-weight: bold;
  14. line-height: 2;
  15. }
  16. .auth-tips {
  17. font-size: 14px;
  18. }
  19. .auth-input {
  20. margin: 3vh 0;
  21. }
  22. .auth-input-second {
  23. margin: 0 0 3vh 0;
  24. }
  25. .auth-actions {
  26. display: flex;
  27. justify-content: center;
  28. flex-direction: column;
  29. button:not(:last-child) {
  30. margin-bottom: 10px;
  31. }
  32. }
  33. }