/* Fondo de la página con imagen */
.main::before {
    content: '';
    background-image: url('/static/img/font.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    height: 100%;
}

/* Centrado del formulario */
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

/* Contenedor principal del formulario */
.container {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--box);
    color: #000000;
    padding: 50px;
    border-radius: 15px;
    font-size: 18px;
    text-align: center;
    max-width: 450px;
    width: 100%;
}

/* Título */
.title-login {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Subtítulo */
.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Campos de entrada */
.input-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    border: 1px solid #000000;
    margin-bottom: 15px;
}

.input-box i {
    font-size: 20px;
    color: #666;
}

.input-field {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    padding-left: 10px;
    background-color: transparent;
}

/* Botón de envío */
.btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: var(--dorado);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit i {
    margin-right: 5px;
}

.btn-submit:hover {
    background-color: #987724;
}

/* Sección de ayuda */
.help-section {
    margin-top: 20px;
}

.divider {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
}

.help-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.help-link {
    font-size: 14px;
    color: var(--dorado);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.help-link:hover {
    color: #b38b3e;
    transform: translateX(5px);
    text-shadow: 0px 0px 5px rgba(179, 139, 62, 0.5);
}


.help-link i {
    font-size: 16px;
}
@media (max-width: 500px) {
    .help-options {
        display: flex;
        gap: 50px;
        margin-bottom: 0;
    }
}
