body {
    background-color: #003060!important;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 40px 20px;
    box-sizing: border-box;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
}

h2 {
    text-align: center;
}

label {
    font-weight: normal;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Botão padrão (fora da div .botoes-formulario) */
button:not(.botoes-formulario button) {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #218838;
}

.botoes-formulario {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.botoes-formulario button {
    flex: 1;
    max-width: 180px;
    font-size: 18px;
    padding: 14px 0;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botoes-formulario button:hover {
    background-color: #0056b3;
}

/* Estilo do botão GRAVAR */
.botoes-formulario button[name="acao"][value="gravar"] {
    background-color: #E5CFA3;
}

.botoes-formulario button[name="acao"][value="gravar"]:hover {
    background-color: #d4b884;
}

/* Estilo do botão ENVIAR */
.botoes-formulario button[name="acao"][value="enviar"] {
    background-color: #CD9F43;
}

.botoes-formulario button[name="acao"][value="enviar"]:hover {
    background-color: #b88936;
}

.btn-primario {
    font-size: 16px;
    padding: 14px 0;
    background-color: #1C56E7;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.btn-primario:hover {
    background-color: #1646bb;
}

.btn-secundario {
    font-size: 16px;
    padding: 14px 0;
    background-color: #CD9F43;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 180px;
}

.btn-secundario:hover {
    background-color: #a9832d;
}


