/* Fondo sección */
.form-traslado {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
}

/* Card */
.traslado-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    background: white;
}

/* Título */
.titulo-form {
    font-weight: 700;
    color: #0d6efd;
}

/* Inputs */
.form-control {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #ddd;
    transition: all .3s;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
}

/* Botón */
.btn-enviar {
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    border: none;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Labels */
label {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Responsive móvil */
@media (max-width: 576px) {
    .traslado-card {
        padding: 25px;
    }

    .titulo-form {
        font-size: 20px;
    }
}


/* BOTONES BOSS */
.boss-panel {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.boss-panel .btn {
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
