/**
 * REGISTRATION - Estilos Comunes
 * ===============================
 * Estilos compartidos para todas las páginas de autenticación
 * (login, password reset, etc.)
 */

/* === CARDS === */
.card {
    border-radius: 12px;
}

.card-header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-weight: 600;
}

.card.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* === FORMULARIOS === */
.form-control-lg {
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

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

/* === BOTONES === */
.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn i {
    margin-right: 0.5rem;
}

/* === ALERTAS === */
.alert {
    border-radius: 8px;
    border-left: 4px solid;
}

.alert-danger {
    border-left-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    border-left-color: #17a2b8;
    background-color: #d1ecf1;
    color: #0c5460;
}

.alert-success {
    border-left-color: #28a745;
    background-color: #d4edda;
    color: #155724;
}

.alert-warning {
    border-left-color: #ffc107;
    background-color: #fff3cd;
    color: #856404;
}

/* === ICONOS === */
.bi {
    vertical-align: middle;
}

.fs-1 {
    font-size: 3rem !important;
}

/* === ENLACES === */
a {
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline !important;
}

/* === LISTAS === */
ul {
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 0.25rem;
}

/* === RESPONSIVE === */
@media (max-width: 576px) {
    .card-body {
        padding: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
