/* ESTILOS GENERALES PARA AMBOS FORMULARIOS */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
}

.auth-form {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
}

.auth-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

/* ESTILOS PARA LOS INPUTS */
.auth-input-group {
    margin-bottom: 1.2rem;
}

.auth-input-group label {
    font-size: 1rem;
    color: #495057;
}

.auth-input-group .form-control {
    height: 50px;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.auth-input-group .form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* ESTILOS PARA BOTONES */
.auth-btn {
    padding: 12px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.auth-btn-primary {
    background-color: #0d6efd;
    border: none;
    margin-bottom: 15px;
}

.auth-btn-primary:hover {
    background-color: #0b5ed7;
}

.auth-btn-secondary {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
}

.auth-btn-secondary:hover {
    background-color: #f8f9fa;
}

/* ESTILOS PARA MENSAJES DE ALERTA */
.auth-alert {
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ESTILOS ESPECÍFICOS PARA MÓVILES */
@media (max-width: 576px) {
    .auth-container {
        padding: 15px;
        align-items: flex-start;
        padding-top: 40px;
    }
    
    .auth-form {
        padding: 25px 20px;
        border-radius: 10px;
    }
    
    .auth-logo {
        max-width: 220px;
        margin-bottom: 20px;
    }
    
    .auth-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .auth-input-group .form-control {
        height: 46px;
        font-size: 0.95rem;
    }
    
    .auth-btn {
        padding: 10px;
        font-size: 1rem;
    }
}

/* ESTILOS ESPECÍFICOS PARA REGISTRO (si necesitas diferenciarlos) */
.registration-form .auth-input-group {
    margin-bottom: 1rem;
}

.registration-form .auth-title {
    margin-bottom: 1.8rem;
}