@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    width: 100%;
    height: auto;
    font-family: "Poppins", sans-serif;
}

/* ============= CADASTRO BÁSICO E FICHAS ============= */

/* Style the form */
#reg_wp_users {
    background-color: #ffffff;
    margin: 10px auto;
    padding: 40px;
    width: 70%;
    min-width: 300px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: lightgray;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: lightgreen;
}

.buttons-section {
    display: flex;
    justify-content: space-evenly;

    & button {
        border-radius: 10px;
    }
}

input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.error-message {
    width: 100%;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    /* Ajuste o margin-bottom conforme necessário */
}

.custom-fieldset {
    border: 2px solid #00008B;
    border-radius: 8px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 100%;
    /* Ajusta a altura conforme necessário */
    height: auto;
    box-sizing: border-box;
    font-size: 10px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    /* Permite que os itens se movam para a linha seguinte, se necessário */
    gap: 15px;
    /* Espaçamento entre os itens */
}

.checkbox-item {
    display: flex;
    align-items: center;
    /* Alinha o checkbox e o rótulo verticalmente */
    margin-bottom: 10px;
    /* Espaçamento inferior entre os itens */
}

.checkbox-item label {
    margin-right: 10px;
    /* Espaçamento entre o rótulo e o checkbox */
    white-space: nowrap;
    /* Garante que o texto do rótulo não quebre para a linha seguinte */
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    /* Permite que os itens se movam para a linha seguinte, se necessário */
    gap: 15px;
    /* Espaçamento entre os itens */
}

.checkbox-item {
    display: flex;
    align-items: center;
    /* Alinha o checkbox e o rótulo verticalmente */
    margin-bottom: 10px;
    /* Espaçamento inferior entre os itens */
}

.checkbox-item label {
    margin-right: 10px;
    /* Espaçamento entre o rótulo e o checkbox */
    white-space: nowrap;
    /* Garante que o texto do rótulo não quebre para a linha seguinte */
}

/* ================ CADASTRO BÁSICO E FICHAS =================== */

/* ================ HOME =================== */
.secao-inicial {
    height: 70vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
        url("<?php echo get_stylesheet_directory_uri(); ?>/PAGINAS/imagens/homeWallpaper.png");
    background-position: center;
    background-size: cover;
    position: relative;
}
/* ================ HOME =================== */