/* Usado por: registro_streaming.html, mi_wallet_streaming.html,
   solicitar_retiro.html, confirmar_retiro_2fa.html,
   transferir_saldo_streaming.html, pagar_mensualidad_a_otro_streaming.html */
.form-streaming { display: flex; flex-direction: column; gap: 18px; }
.form-streaming__field { display: flex; flex-direction: column; gap: 6px; }
.form-streaming__label { font-family: var(--font-display); font-size: 0.9rem; color: var(--text-muted); }
.form-streaming__input,
.form-streaming__field input,
.form-streaming__field select,
.form-streaming__field textarea {
    width: 100%;
    background: var(--bg-card);
    color: var(--text-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-streaming__input:focus,
.form-streaming__field input:focus,
.form-streaming__field select:focus,
.form-streaming__field textarea:focus {
    outline: none;
    border-color: var(--red-primary);
    box-shadow: 0 0 0 3px var(--red-glow);
}
.form-streaming__input:disabled { opacity: 0.5; cursor: not-allowed; }
.form-streaming__input[aria-invalid="true"] { border-color: var(--red-primary); }
.form-streaming__error { color: var(--red-light); font-size: 0.85rem; }
.form-streaming__hint { color: var(--text-dim); font-size: 0.85rem; }
