style.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. html {
  2. box-sizing: border-box;
  3. }
  4. *,
  5. *::before,
  6. *::after {
  7. box-sizing: inherit;
  8. }
  9. .signInForm{
  10. margin: 0 auto;
  11. margin-bottom: 20px;
  12. width: 600px;
  13. display: flex;
  14. justify-content: space-between;
  15. flex-wrap: wrap;
  16. background-color: blueviolet;
  17. padding: 5px;
  18. border-radius: 10px;
  19. border: solid 2px black;
  20. }
  21. .passwordInput , .loginInput ,.confirmPasswordInput{
  22. font-size: 18px;
  23. color: rgb(94, 91, 91);
  24. width: 100%;
  25. margin-bottom: 10px;
  26. }
  27. .hiddenInput {
  28. display: none;
  29. }
  30. .passwordInput::placeholder{
  31. font-size: 18px;
  32. background: -webkit-linear-gradient(left, rgb(8, 8, 8) 0%, rgb(2, 2, 2) 65%,red 60%, red 100%);
  33. -webkit-background-clip: text;
  34. -webkit-text-fill-color: transparent;
  35. }
  36. .labelCheckBox{
  37. font-size: 18px;
  38. color: rgb(183, 184, 184);
  39. display: flex;
  40. align-items: center;
  41. }
  42. .btnSubmit{
  43. width: auto;
  44. background-color: black;
  45. border-radius: 10px;
  46. border: solid 2px rgb(8, 31, 243);
  47. font-size: 28px;
  48. color: white;
  49. }
  50. .btnSubmit__disable {
  51. border-radius: 10px;
  52. font-size: 28px;
  53. width: auto;
  54. pointer-events: none;
  55. color: #c0c0c0;
  56. border: solid 2px rgb(133, 132, 132);
  57. background-color: #ffffff;
  58. cursor: not-allowed;
  59. }
  60. .formWrapper{
  61. margin: 0 auto;
  62. width: 100%;
  63. padding: 20px;
  64. background-color: rgb(219, 214, 214);
  65. border: solid 5px grey;
  66. display: flex;
  67. flex-wrap: wrap;
  68. justify-content: space-between;
  69. }
  70. .placeholderForm{
  71. position: relative;
  72. width: 340px;
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. flex-wrap: wrap;
  77. padding: 5px;
  78. text-transform: uppercase;
  79. }
  80. .title{
  81. display: block;
  82. width: 100%;
  83. position: relative;
  84. margin-bottom: 5px;
  85. }
  86. .title::before{
  87. content: '*';
  88. color: red;
  89. }
  90. .warningSpan{
  91. display: inline;
  92. width: 340px;
  93. text-align: left;
  94. padding-left: 5px;
  95. font-size: 17px;
  96. color: rgb(252, 14, 14);
  97. text-transform: none;
  98. }
  99. .warningSpan--hidden{
  100. display: none;
  101. }
  102. .formInput {
  103. height: 40px;
  104. width: 340px;
  105. color: white;
  106. font-size: 18px;
  107. background-color: grey;
  108. border: solid 2px rgb(240, 236, 236);
  109. border-radius: 10px;
  110. outline: none;
  111. padding-left: 10px;
  112. margin-bottom: 5px;
  113. }
  114. .wrongField{
  115. border: solid 2px red;
  116. color: red;
  117. }
  118. .rightInput {
  119. color: green;
  120. border: solid 2px green;
  121. }
  122. .placeholderWrong{
  123. color: red;
  124. }
  125. .placeholderRight{
  126. color: green;
  127. }
  128. .btnWrapper{
  129. padding: 10px;
  130. display: flex;
  131. justify-content: center;
  132. background-color: grey;
  133. margin-bottom: 20px;
  134. }
  135. .okButton{
  136. margin-right: 20px;
  137. background-color: green;
  138. color: white;
  139. border-radius: 5px;
  140. }
  141. .cancelButton{
  142. margin-right: 20px;
  143. background-color: rgb(248, 15, 15);
  144. color: white;
  145. border-radius: 5px;
  146. }
  147. .cancelButton , .okButton {
  148. font-size: 25px;
  149. }