/* Entradas estilo Glass para el banco */
.input-banco-group {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px; 
    padding: 12px 18px; 
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.input-banco-group:focus-within { 
    border: 1px solid var(--primary-orange); 
    background: rgba(255,255,255,0.1);
}
.input-banco-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 8px;
}

.input-banco-group input, 
.input-banco-group select {
    background: transparent; border: none; color: white;
    font-size: 1.1rem; outline: none; width: 100%;
}

.input-banco-group select option { background-color: #1a1a1a; color: white; }

/* Botón de Guardar */
.btn-banco-guardar {
    background: linear-gradient(135deg, #4A2E02, #2B1A00);
    border: 1px solid rgba(217, 125, 0, 0.3);
    color: white; padding: 16px; border-radius: 25px;
    font-size: 1.1rem; font-weight: bold; width: 100%;
    margin-top: 25px; cursor: pointer; display: flex;
    justify-content: center; align-items: center; gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    animation-delay: 0.3s !important;
    transition: transform 0.2s;
}
.btn-banco-guardar:active { transform: scale(0.96); }