/* Estilos personalizados para el formulario de registro */

body {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #c44569 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-bottom: none;
    padding: 2rem;
}

.card-header h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-body {
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.form-check-input:checked {
    background-color: #e91e63;
    border-color: #e91e63;
}

.btn-primary {
    background: linear-gradient(135deg, #e91e63, #f06292);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.form-check-label {
    margin-left: 0.5rem;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-header, .card-body {
        padding: 1.5rem;
    }
}

/* Estilos adicionales para las páginas de auth */
.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.badge {
    font-size: 0.85em;
}

.bg-light {
    background: rgba(255, 255, 255, 0.8) !important;
}

.text-primary {
    color: #e91e63 !important;
}

.bg-primary {
    background: linear-gradient(135deg, #e91e63, #f06292) !important;
}

.table-primary th {
    background: linear-gradient(135deg, #e91e63, #f06292) !important;
    color: white !important;
    border: none;
}

.table-hover tbody tr:hover {
    background-color: rgba(233, 30, 99, 0.05);
}

.table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}