2025-03-20 23:17:44 +03:00
|
|
|
/* Общие стили */
|
|
|
|
body {
|
2025-03-20 23:25:38 +03:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
margin: 0;
|
|
|
|
padding: 20px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column; /* Располагаем контейнеры вертикально */
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
2025-03-20 23:17:44 +03:00
|
|
|
}
|
|
|
|
|
2025-03-20 23:25:38 +03:00
|
|
|
|
2025-03-20 23:17:44 +03:00
|
|
|
/* Контейнер для форм */
|
2025-03-20 23:25:38 +03:00
|
|
|
.form-container { /* Изменили селектор на класс .form-container */
|
|
|
|
width: 100%;
|
|
|
|
max-width: 400px;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
|
|
margin-bottom: 20px;
|
2025-03-20 23:17:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Заголовки */
|
|
|
|
h1 {
|
2025-03-20 23:25:38 +03:00
|
|
|
text-align: center;
|
|
|
|
color: #333;
|
|
|
|
margin-bottom: 20px;
|
2025-03-20 23:17:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Метки (labels) */
|
|
|
|
label {
|
2025-03-20 23:25:38 +03:00
|
|
|
display: block;
|
2025-03-20 23:17:44 +03:00
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Поля ввода (input) */
|
|
|
|
input[type="text"],
|
|
|
|
input[type="password"] {
|
2025-03-20 23:25:38 +03:00
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
2025-03-20 23:17:44 +03:00
|
|
|
margin-bottom: 20px;
|
2025-03-20 23:25:38 +03:00
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
2025-03-20 23:17:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Кнопки */
|
|
|
|
button {
|
2025-03-20 23:25:38 +03:00
|
|
|
background-color: #4CAF50;
|
|
|
|
color: white;
|
|
|
|
padding: 12px 20px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
transition: background-color 0.3s ease;
|
2025-03-20 23:17:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
button:hover {
|
2025-03-20 23:25:38 +03:00
|
|
|
background-color: #45a049;
|
2025-03-20 23:17:44 +03:00
|
|
|
}
|