


body {
    background: url('/static/image/fundo1.png') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-container {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
}

.form-container-login {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 20px auto;
    width: 100%;
    max-width: 400px;
}

h1 {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
}
h2 {
    color: #333;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

h3 {
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin: auto;
    margin-bottom: 0px;
    margin-top: 0px;
    width: calc(100% - 10px);
    padding:4px
}

form {
    overflow: visible;
    height: auto;
}

.toggle-container {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #777;
    transition: 0.4s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #e6be10;
}

input:checked + .slider:before {
    transform: translateX(14px);
}

span.titulo_toggle {
    font-size: 14px;
    color: #777;
}

legend.titulos_grupos {
    font-size: 18px;
    color: #999;
}

.horizontais {
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    width: 100%;
    column-gap: 20px;
    font-size: 16px;
    color: #555;
}

.horizontais * {
    margin-left: 0;
    margin-right: 0;
}

label.titulos_campos {
    margin-top: 2px;
    margin-bottom: 4px;
    font-size: 14px;
    color: #777;
    display: block;
}
select.opcoes_select {
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #777;
    width: 100%;
    height: 38px;
    padding: 10px;
    box-sizing: border-box;
}


.campo_simples {
    padding: 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #777;
    min-width: 200px;
    width: 100%;
    box-sizing: border-box;
}

.toggle-container,
.campo_simples_data,
.campo_simples {
    height: 40px; /* Ajuste conforme necessário */
}

input.campo_simples2 {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    color: #777;
}

.button {
    background-color: #000000;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
}

a button {
    margin: 5px;
    padding: 10px 20px;
}

textarea.fixo {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    font-size: 14px;
    color: #555;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: vertical;

    /* Corrigir alinhamento vertical */
    text-align: left;
    vertical-align: top;
    display: block;

    /* Impede espaços extras dentro do textarea */
    overflow: auto;
    white-space: pre-wrap;
}

strong {
    color: black;
    font-weight: bold;
}

p {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 16px;
}

.button:hover {
    background-color: #555555;
}

.instrutores-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    box-sizing: border-box;
}

.instrutor-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.card-buttons {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

fieldset.field {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: auto;
    height: auto;
    resize: none;
}

.lista-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    box-sizing: border-box;
}

.lista-card {
    background: #fff;
    border: 1px solid #ffbc01;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    width: 100%;
    text-align: center;
}

.justificado {
    text-align: justify;
    hyphens: auto;
}

.metade {
    flex: 1;
    display: flex;
}