index.module.css 700 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .main {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. background-color: #eee;
  7. background-image: url('@assets/images/login/background.webp');
  8. background-repeat: no-repeat;
  9. background-position: bottom center;
  10. background-size: contain;
  11. }
  12. .card {
  13. padding: 60px 40px;
  14. background-color: rgb(255 255 255 / 86%);
  15. box-shadow:
  16. 31px 31px 62px #545353,
  17. -31px -31px 62px #848181;
  18. transform: translateY(-50px);
  19. }
  20. .lottie {
  21. width: 280px;
  22. }
  23. .info {
  24. display: flex;
  25. justify-content: space-between;
  26. width: 700px;
  27. }
  28. .footer {
  29. position: fixed;
  30. bottom: 16px;
  31. }
  32. .logo {
  33. position: fixed;
  34. top: 24px;
  35. left: 24px;
  36. width: 60px;
  37. }