/* Контейнер для формы */
.registration-container {
    display: flex;
    justify-content: center;   /* горизонтальное центрирование */
    align-items: center;       /* вертикальное центрирование */
    height: 100vh;             /* вся высота экрана */
    width: 100%;
    background: #f2f2f2;       /* фон страницы */
}

/* Обертка формы */
.form-wrapper {
    background-color: white;
    padding: 25px 20px;        /* компактные отступы */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 380px;              /* чуть уже, чем раньше */
}

/* Заголовок */
.form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Поля ввода */
form input,
form textarea {
    display: block;
    width: 90%;
    max-width: 330px;
    padding: 10px;
    margin: 8px auto 0 auto;   /* меньше отступ сверху */
    border: 1.8px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Фокус на поле */
form input:focus,
form textarea:focus {
    border-color: #007BFF;
    background: #fff;
    outline: none;
}

/* Ошибки */
.error {
    color: #FF4D4D;
    font-size: 13px;
    margin-top: 3px;
    font-weight: bold;
}

/* Кнопка */
.btn-submit {
    display: block;
    width: 90%;
    max-width: 330px;
    margin: 12px auto 0 auto;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Эффекты кнопки */
.btn-submit:hover {
    background-color: #0056b3;
}

.btn-submit:active {
    transform: scale(0.96);
}

/* Ссылка на вход */
.login-link {
    margin-top: 12px;
    font-size: 15px;
    text-align: center;
}

.login-link a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Выравнивание текста по центру */
.center-text {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}
