123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* Общие стили */
- body {
- font-family: 'Arial', sans-serif;
- background-image: url('../картинки/фон.jpg');
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- }
- .big_con {
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- }
- .block_auth {
- background-color: #fff;
- padding: 30px;
- border-radius: 10px;
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
- text-align: center;
- width: 400px; /* Ширина блока авторизации */
- }
- h2 {
- font-size: 24px;
- margin-bottom: 20px;
- color: #333;
- }
- /* Стили для полей ввода */
- .enter {
- width: 100%;
- padding: 10px;
- margin-bottom: 15px;
- border: 1px solid #ccc;
- border-radius: 5px;
- box-sizing: border-box;
- font-size: 16px;
- }
- .enter:focus {
- outline: none;
- border-color: #444444; /* Цвет рамки при фокусе */
- }
- /* Стили для кнопок */
- .orange {
- background-color: #444444; /* Серый цвет кнопки */
- color: #fff;
- padding: 10px 20px;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- font-size: 16px;
- transition: background-color 0.3s ease;
- margin-bottom: 15px;
- }
- .orange:hover {
- background-color: #6e6e6e; /* Серый цвет при наведении */
- }
- /* Стили для информации о поддержке */
- .support-info {
- text-align: left;
- margin-top: 20px;
- }
- .support-info h3 {
- margin-bottom: 5px;
- }
- /* Стили для кнопки закрытия */
- .close-button {
- position: absolute;
- top: 10px;
- right: 10px;
- background: transparent;
- border: none;
- font-size: 20px;
- cursor: pointer;
- }
- .footer-link {
- position: absolute;
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- color: white;
- text-decoration: none;
- font-weight: bold;
- background-color: #444444;
- padding: 10px 20px;
- border-radius: 5px;
- z-index: 2;
- }
-
- .footer-link:hover {
- background-color: #6e6e6e;
- }
|