style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-family: "Poppins", sans-serif;
  8. /* overflow: hidden; */
  9. }
  10. .geral-signup {
  11. display: flex;
  12. }
  13. .img-logo-signup {
  14. width: 350px;
  15. height: 100px;
  16. }
  17. .register {
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. flex-direction: column;
  22. }
  23. .paper {
  24. display: flex;
  25. flex-direction: column;
  26. align-items: center;
  27. max-width: 500px;
  28. /* max-height: 100vh; */
  29. }
  30. .container-signup {
  31. align-items: center;
  32. display: flex;
  33. justify-content: center;
  34. flex-direction: column;
  35. width: 100%;
  36. padding: 10px;
  37. /* max-height: 100vh; */
  38. }
  39. .h4 {
  40. caret-color: rgb(52, 137, 255);
  41. color: rgb(52, 137, 255);
  42. column-rule-color: rgb(52, 137, 255);
  43. font-size: 34px;
  44. line-height: 41.99px;
  45. margin: 10px 0 25px;
  46. }
  47. .span {
  48. font-size: 16px;
  49. line-height: 28px;
  50. }
  51. .container-img-signup {
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. height: 100vh;
  56. width: 100%;
  57. }
  58. .img-signup {
  59. background-image: url(../../assets/backgroundStep.png);
  60. background-position: 50% 50%;
  61. background-repeat: no-repeat;
  62. background-size: cover;
  63. position: fixed;
  64. width: 700px;
  65. height: 100vh;
  66. object-fit: cover;
  67. }
  68. .p {
  69. font-size: 12px;
  70. color: #999;
  71. }
  72. .footer {
  73. text-align: center;
  74. margin-top: 30px;
  75. margin-bottom: 20px;
  76. }
  77. .footer a {
  78. text-decoration: none;
  79. cursor: pointer;
  80. color: #3489ff;
  81. }
  82. .footer a:hover {
  83. text-decoration: underline;
  84. }
  85. @media screen and (max-width: 320px) {
  86. .container-img-signup {
  87. display: none;
  88. }
  89. .paper {
  90. width: 300px;
  91. }
  92. .img-logo-signup {
  93. width: 200px;
  94. height: 70px;
  95. }
  96. }
  97. @media screen and (max-width: 940px) {
  98. .container-img-signup {
  99. display: none;
  100. }
  101. }
  102. @media screen and (max-width: 1024px) {
  103. .paper {
  104. max-width: 450px;
  105. max-height: fit-content;
  106. }
  107. .img-signup {
  108. width: 499px;
  109. }
  110. }
  111. @media screen and (min-width: 1400px) {
  112. .img-signup {
  113. width: 50%;
  114. }
  115. }