/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #757070;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px; /* diminui pra ficar mais centralizado visualmente */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    gap: 15px; /* controla espaçamento geral */
}

/* Título principal */
h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #000;
}

p {
    text-align: center;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

/* Títulos de seção */
.secao-titulo {
    margin: 20px 0 10px;
    font-weight: bold;
    color: #4facfe;
    border-bottom: 2px solid #4facfe;
    padding-bottom: 5px;
}

/* Campos */
.cadastros {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Labels */
label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

/* Inputs e Selects */
input[type="text"],
select {
    width: 100%; /* 🔥 ISSO resolve o desalinhamento */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

input:focus,
select:focus {
    border-color: #4facfe;
    outline: none;
    box-shadow: 0 0 5px rgba(79, 172, 254, 0.5);
}

/* Botões */
.blocos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4facfe;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

/* Botão voltar */
.btn-back {
    background: #6c757d;
}

.btn-back:hover {
    background: #5a6268;
}

/* Hover padrão */
button:hover {
    background: #00c6ff;
}