/* 
   Estilos específicos para el formulario de gestión de usuarios
   Módulo: Administración / Usuarios
*/

.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
    border: none;
}

.section-title {
    color: #1a5276;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #2980b9;
    margin: 10px auto 0;
    border-radius: 2px;
}

.form-label {
    font-weight: 700;
    color: #444;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    margin-left: 5px;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    color: #1a5276;
    border-radius: 12px 0 0 12px;
}

.form-control, .form-select {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #eee;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.form-control:focus, .form-select:focus {
    background-color: white;
    border-color: #2980b9;
    box-shadow: 0 0 0 4px rgba(41, 128, 185, 0.1);
}

.btn-primary {
    background-color: #1a5276 !important;
    border-color: #1a5276 !important;
}

.btn-primary:hover {
    background-color: #14425e !important;
    border-color: #14425e !important;
}

.btn-pill {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.info-box {
    background: #eef7fd;
    border-left: 4px solid #2980b9;
    padding: 15px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #1a5276;
}
