/* Estilo para a página de postagem de vagas */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.postagem-container {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.header-empresa {
    background-color: #0494EC;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-empresa {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
}

legend {
    width: auto;
    padding: 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0494EC;
    border-bottom: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
}

.btn-publicar {
    background-color: #0494EC;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-publicar:hover {
    background-color: #0378C4;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

/* Estilo para os checkboxes de benefícios */
.beneficios-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.beneficio-check {
    display: flex;
    align-items: center;
    gap: 8px;
}
