/* CSS DEDICADO PARA A JORNADA DE CHECKOUT MIVIU CLOUD */
body {
    background-color: #0f172a;
    font-family: 'Inter', sans-serif;
}

.glass-panel {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Transições suaves de abas e botões */
button, input, select {
    transition: all 0.2s ease-in-out;
}

/* Responsividade de formulários em tela pequena */
@media (max-width: 640px) {
    .glass-panel {
        padding: 1.25rem;
    }
}
