main {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 93vh;
    background: linear-gradient(to top left, #361c03, #000000);
}

#turnstile-container {
    height: 70px;
}

.container-for-email p {
    margin-bottom: 10px;
}

.container-for-email {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Небольшая тень */
    width: 450px;
    /* Фиксированная ширина, чтобы форма не растягивалась */
    max-width: 90%;
    /* Максимальная ширина 90% от родительского элемента, адаптивность */
    text-align: center;
    /* Центрирование содержимого */
}

.form {
    display: flex;
    flex-direction: column;

    /* Расположение элементов по вертикали */
}

/* #email {
    margin-top: 20px;
    height: 30px;
    border-radius: 5px;
    border-width: 1.5px;
    padding: 2px 10px;
} */


.form input[type="submit"] {
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.form input[type="email"] {
    /* Объединение стилей для password и text */
    padding: 12px;
    margin-top: 20px;
    /* Увеличенный отступ между полями */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    /* Плавное изменение цвета рамки */
}

.form input[type="email"]:focus {
    outline: none;
    /* Убираем стандартную обводку при фокусе */
    border-color: #007bff;
    /* Подсвечиваем рамку при фокусе */
}

.form * {
    margin: 2.5px 0;
}



.err_pass {
    color: #dc3545;
    /* Красный цвет для ошибок */
    margin-bottom: 15px;
    font-size: 20px;
}

.reset-pwd {
    font-size: 32px;
}

.forgot-pass {
    justify-content: center;
    display: flex;
    font-size: 14px;
    margin-top: 10px;
}