авторизация.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. body {
  2. margin: 0;
  3. font-family: sans-serif;
  4. overflow-x: hidden;
  5. background-image: url('../картинки/фон.jpg');
  6. font-family: sans-serif;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. min-height: 100vh;
  11. background-color: #f4f4f4;
  12. background-size: cover;
  13. background-position: center;
  14. }
  15. .container {
  16. position: relative;
  17. width: 100%;
  18. overflow: hidden; /* Скрываем переполнение для закругления */
  19. }
  20. .background-image {
  21. width: 100%;
  22. height: 400px; /* Высота фона */
  23. background-size: cover;
  24. background-position: center;
  25. border-radius: 10px; /* Закругленные углы */
  26. min-height: 100vh
  27. }
  28. .content {
  29. position: absolute;
  30. top: 50%;
  31. left: 50%;
  32. transform: translate(-50%, -50%);
  33. text-align: center;
  34. color: #fff;
  35. z-index: 1; /* Помещаем текст поверх изображения */
  36. }
  37. .content h2 {
  38. font-size: 36px;
  39. margin-bottom: 10px;
  40. color: #fff;
  41. }
  42. h4 {
  43. font-size: 28px;
  44. margin-bottom: 10px;
  45. color: #fff;
  46. }
  47. p {
  48. font-size: 24px;
  49. margin-bottom: 10px;
  50. color: #fff;
  51. }
  52. header {
  53. background-color: transparent;
  54. padding: 20px;
  55. display: flex;
  56. align-items: center;
  57. justify-content: space-between;
  58. position: absolute; /* Помещаем меню поверх изображения */
  59. top: 20px; /* Отступ сверху */
  60. left: 20px; /* Отступ слева */
  61. z-index: 2; /* Помещаем меню поверх текста */
  62. justify-content: space-between;
  63. width: 95%
  64. }
  65. .logo {
  66. font-size: 24px;
  67. font-weight: bold;
  68. color: #0022ff; /* Синий цвет */
  69. text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Тень */
  70. }
  71. nav {
  72. display: flex;
  73. }
  74. nav a {
  75. text-decoration: none;
  76. color: #faf3f3;
  77. padding: 10px 20px;
  78. position: relative;
  79. margin-left: 20px;
  80. }
  81. nav a::after {
  82. content: "";
  83. position: absolute;
  84. bottom: 0;
  85. left: 0;
  86. width: 100%;
  87. height: 3px;
  88. background: linear-gradient(to right, #007bff, #663399, #ff0000); /* Градиент */
  89. transform: scaleX(0);
  90. transition: transform 0.3s ease-in-out;
  91. }
  92. nav a:hover::after {
  93. transform: scaleX(1);
  94. }
  95. .dropdown {
  96. position: relative;
  97. margin-left: 20px;
  98. }
  99. .dropdown-content {
  100. display: none;
  101. position: absolute;
  102. background-color: #f9f9f9;
  103. min-width: 160px;
  104. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  105. z-index: 1;
  106. }
  107. .dropdown-content a {
  108. color: #333;
  109. padding: 12px 16px;
  110. text-decoration: none;
  111. display: block;
  112. }
  113. .dropdown-content a:hover {
  114. background-color: #f1f1f1;
  115. }
  116. .dropdown:hover .dropdown-content {
  117. display: block;
  118. }
  119. .icon {
  120. margin-left: 20px;
  121. cursor: pointer;
  122. }
  123. .icon img {
  124. width: 30px;
  125. height: 30px;
  126. }
  127. /* Стили для фонов */
  128. section {
  129. padding: 50px;
  130. text-align: center;
  131. min-height: 100vh;
  132. }
  133. .background-image1 {
  134. width: 100%;
  135. height: 400px; /* Высота фона */
  136. background-image: url('аудирс7.jpg'); /* Замените на путь к вашей картинке */
  137. background-size: cover;
  138. background-position: center;
  139. border-radius: 10px; /* Закругленные углы */
  140. min-height: 100vh
  141. }
  142. .background-image2 {
  143. width: 100%;
  144. height: 400px; /* Высота фона */
  145. background-image: url('киак5.jpg'); /* Замените на путь к вашей картинке */
  146. background-size: cover;
  147. background-position: center;
  148. border-radius: 10px; /* Закругленные углы */
  149. min-height: 100vh
  150. }
  151. .data_foot {
  152. display: flex;
  153. flex-direction: column;
  154. align-items: center;
  155. gap: 5px;
  156. }
  157. hr {
  158. width: 100%;
  159. border: 1px solid #D1D1D1;
  160. }
  161. .i:hover svg path {
  162. fill: #D1D1D1;
  163. }
  164. .scroll-to-top {
  165. position: fixed;
  166. bottom: 20px;
  167. right: 20px;
  168. display: none;
  169. z-index: 10;
  170. cursor: pointer;
  171. }
  172. .scroll-to-top img {
  173. width: 50px;
  174. }
  175. .container {
  176. background-color: #fff;
  177. padding: 40px;
  178. border-radius: 5px;
  179. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  180. width: 350px;
  181. background-color: rgba(255, 255, 255, 0.8);
  182. }
  183. h2 {
  184. text-align: center;
  185. margin-bottom: 20px;
  186. color: #333;
  187. }
  188. p {
  189. text-align: center;
  190. margin-bottom: 20px;
  191. color: #333;
  192. }
  193. input[type="email"],
  194. input[type="password"] {
  195. width: 100%;
  196. padding: 12px;
  197. margin-bottom: 15px;
  198. border: 1px solid #ccc;
  199. border-radius: 4px;
  200. box-sizing: border-box;
  201. }
  202. input[type="text"],
  203. input[type="email"],
  204. input[type="tel"],
  205. input[type="password"],
  206. input[type="kod"] {
  207. width: 100%;
  208. padding: 12px;
  209. margin-bottom: 15px;
  210. border: 1px solid #ccc;
  211. border-radius: 4px;
  212. box-sizing: border-box;
  213. }
  214. button {
  215. background-color: #444444;
  216. color: #fff;
  217. padding: 12px 20px;
  218. border: none;
  219. border-radius: 4px;
  220. cursor: pointer;
  221. width: 100%;
  222. }
  223. button:hover {
  224. background-color: #6e6e6e;
  225. }
  226. .register-link {
  227. text-align: center;
  228. margin-top: 15px;
  229. color: #333;
  230. }
  231. .register-link a {
  232. color: #444444;
  233. text-decoration: none;
  234. }
  235. nav a {
  236. text-decoration: none;
  237. color: #faf3f3;
  238. padding: 10px 20px;
  239. position: relative;
  240. margin-left: 20px;
  241. }
  242. nav a::after {
  243. content: "";
  244. position: absolute;
  245. bottom: 0;
  246. left: 0;
  247. width: 100%;
  248. height: 3px;
  249. background: linear-gradient(to right, #ffffff, #ffffff, #ffffff); /* Градиент */
  250. transform: scaleX(0);
  251. transition: transform 0.3s ease-in-out;
  252. }
  253. nav a:hover::after {
  254. transform: scaleX(1);
  255. }
  256. .footer-link {
  257. position: absolute;
  258. bottom: 20px;
  259. left: 50%;
  260. transform: translateX(-50%);
  261. color: white;
  262. text-decoration: none;
  263. font-weight: bold;
  264. background-color: #444444;
  265. padding: 10px 20px;
  266. border-radius: 5px;
  267. z-index: 2;
  268. }
  269. .footer-link:hover {
  270. background-color: #6e6e6e;
  271. }
  272. .popup {
  273. display: none;
  274. position: fixed;
  275. top: 50%;
  276. left: 50%;
  277. transform: translate(-50%, -50%);
  278. background-color: rgba(80, 80, 80, 0.7);
  279. padding: 20px;
  280. border-radius: 5px;
  281. box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  282. z-index: 1000;
  283. text-align: center;
  284. }
  285. .close-button {
  286. position: absolute;
  287. top: 10px;
  288. right: 10px;
  289. cursor: pointer;
  290. }
  291. .register-link {
  292. text-align: center;
  293. margin-top: 15px;
  294. color: #333;
  295. }
  296. .register-link a {
  297. color: #007bff;
  298. text-decoration: none;
  299. }
  300. nav a {
  301. text-decoration: none;
  302. color: #faf3f3;
  303. padding: 10px 20px;
  304. position: relative;
  305. margin-left: 20px;
  306. }
  307. nav a::after {
  308. content: "";
  309. position: absolute;
  310. bottom: 0;
  311. left: 0;
  312. width: 100%;
  313. height: 3px;
  314. background: linear-gradient(to right, #bebebe, #3a3a3a, #bebebe);
  315. transform: scaleX(0);
  316. transition: transform 0.3s ease-in-out;
  317. }
  318. nav a:hover::after {
  319. transform: scaleX(1);
  320. }