body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #2c3e50; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.form-container {
    background: #ffffff; 
    padding: 40px;       
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.logo-img {
    max-width: 150px; 
    margin-bottom: 20px; 
}
h2 {
    margin-bottom: 10px;
    color: #333;
}
p {
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}
label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
/* AJUSTE PARA TODOS OS INPUTS E SELECTS */
input[type="tel"],
input[type="number"],
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: white; /* Garante fundo branco para selects no modo escuro */
}

/* NOVO ESTILO PARA O LAYOUT LADO A LADO */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* Adiciona um espaço entre o label e o input */
    margin-bottom: 10px;
}
.form-row label {
    margin-bottom: 0; /* Remove a margem de baixo do label dentro do form-row */
    flex-shrink: 0; /* Impede que o label encolha */
}
.form-row input {
    margin-bottom: 0; /* Remove a margem de baixo do input dentro do form-row */
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #6c5ce7;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px; /* Adiciona um espaço acima do botão */
}
button:hover {
    background-color: #5a4cdb;
}
#response-message,
#pagamento-error-message,
#pix-cartao-error-message {
    margin-top: 15px;
    font-weight: bold;
}