/* ///////////////////// FORM \\\\\\\\\\\\\\\\\\\\\\\\\ */
#form-header {
    padding: 0.9rem 1.8rem;
    padding-bottom: 1.2rem;
    position: relative;
    margin-top: 44px;
    margin-left: 0 !important;
    right: 0 !important;
    width: 341px;
    height: auto;
    background-color: #fff;
    /* box-shadow: -10px 40px 14px -20px rgba(0,0,0,0.175);      */
}

#form-header h2 {
    font-family: 'Poppins';
    font-weight: 900;
    font-style: normal;
    color: #00205c;
    font-size: 2.3rem;
    line-height: 42px;
}

#form-header form input {
    border: 1px solid rgba(221, 221, 221, 1);
    padding: 0.28rem 0.4rem;
    border-radius: 8px;
}

#form-header form input:focus-visible {
    outline: none;
}

#form-header form label:not(.custom-checkbox) {
    font-size: 1.125rem;
    color: #00205c;
    font-weight: normal;
}

/* Checkbox */
/* Oculta o checkbox padrão */
.custom-checkbox input[type="checkbox"] {
    display: none;
}

/* Estilo do contêiner do checkbox */
.custom-checkbox {
    line-height: 18px;
    display: flex;
    margin-top: 15px;
    font-size: 1em;
    font-weight: normal;
    color: #969696;
    justify-content: left;
    cursor: pointer;
    user-select: none;
}

/* Estilo do "checkmark" */
.custom-checkbox .checkmark {
    width: 24px;
    height: 18px;
    margin-right: 10px;
    background-color: transparent;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 4px;
    position: relative;
    transition: background-color 0.2s;
}

/* Estilo do checkmark quando o checkbox está marcado */
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: transparent;
}

/* Estilo do ícone de check */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5.5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #00205c;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Exibe o ícone de check quando o checkbox está marcado */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}
/* / Checkbox */

#form-header form button {
    display: inline-block;
    padding: 0.35rem 0;
    background-color: #00205c;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
    border: 1px solid transparent;
    /* border-radius: 8px; */
    outline: none;
    transition: 0.3s;
}

#form-header form button:hover {
    background-color: #002c7e;
    /* border: 1px solid #00205c; */
}

#feedback {
    font-size: 0.7rem;
    color: #ff0000;
}