/* Estilos para las páginas de autenticación */

/* Hero section con imagen de fondo */
.auth-hero {
    position: relative;
    background-image: url('../img/auth-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.auth-hero-content {
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.auth-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.auth-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contenedor del formulario */
.auth-section {
    padding: 0 0 60px;
}

.auth-form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.form-lead {
    color: #666;
    margin-bottom: 25px;
}

/* Estilos del formulario */
.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.auth-form .form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.auth-form .form-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 5px;
}

.auth-form .form-check-label {
    font-size: 0.95rem;
    color: #444;
}

.auth-form .invalid-feedback {
    font-size: 0.85rem;
}

/* Botones y acciones */
.form-actions {
    margin-top: 30px;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Enlaces de ayuda */
.auth-links {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
}

.auth-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .auth-form-container {
        padding: 30px 20px;
    }
    
    .auth-hero {
        padding: 60px 0;
    }
    
    .auth-main-title {
        font-size: 2rem;
    }
    
    .auth-subtitle {
        font-size: 1rem;
    }
}