/* ==========================================
   ESTILOS DE ACCESO (LOGIN / REGISTRO)
   ========================================== */

.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--bg-main, #0f1117);
}

.auth-box {
    background-color: #171b25;
    border: 1px solid #2a3142;
    border-radius: 20px;
    padding: 45px 40px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.auth-header {
    text-align: center;
    margin-bottom: 35px;
}

.auth-header h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.6;
}

/* Formulario */
.auth-form .form-group {
    margin-bottom: 22px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #d7d7d7;
    font-size: 14px;
    font-weight: 600;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 15px 18px;
    background-color: #0d1017;
    border: 1px solid #2d3447;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.auth-form input::placeholder {
    color: #4a5568;
}

.auth-form input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.15);
}

/* Opciones de recuperación y "Recuérdame" */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0aec0;
    cursor: pointer;
    font-weight: normal !important;
}

.remember-me input[type="checkbox"] {
    accent-color: #ff6600;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    color: #ff6600;
    transition: 0.2s;
}

.forgot-link:hover {
    color: #ff7d1a;
    text-decoration: underline;
}

/* Botón principal */
.auth-submit {
    width: 100%;
    background-color: #ff6600;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    background-color: #ff7d1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35);
}

/* Pie de la caja */
.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #2d3447;
    font-size: 15px;
    color: #a0aec0;
}

.text-orange {
    color: #ff6600;
    font-weight: 600;
    margin-left: 5px;
    transition: 0.2s;
}

.text-orange:hover {
    color: #ff7d1a;
    text-decoration: underline;
}

/* Responsive para móviles */
@media (max-width: 576px) {
    .auth-box {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .auth-header h2 {
        font-size: 26px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}