.background-page-dados {
    height: 100%;
    width: 100%;
    background-color: #113260;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 24px;
}

.logo-dados-page {
    height: 100px;
    width: auto;
    margin-bottom: 24px;
}

.content-div-dados-page {
    width: fit-content;
    min-width: 20vw;
    max-width: 35vw;
    min-height: 300px;
    height: fit-content;
    padding: 24px 24px;
    border-radius: 12px;
    background-color: #1e395f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-dados-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(244, 244, 244, 0.445);
    padding-bottom: 4px;
}

.page-dados-description {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 32px;
    text-align: justify;
}

.input-group-dados-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin-bottom: 24px;
}

.input-group-dados-page-title {
    font-size: 18px;
    margin-bottom: 6px;
}

.help-icon-requisicao {
    width: 18px;
    height: auto;
    margin-left: 4px;
    cursor: pointer;
}

.btn-group-dados-page {
    width: 100%;
    height: fit-content;
    padding: 8px;
    border: 1px solid rgba(244, 244, 244, 0.445);
    border-radius: 8px;
}

.btn-dados-page {
    padding: 4px 8px;
    border-radius: 4px;
    border: none;
    background-color: #2f5d9e;
    color: white;
    margin-right: 8px;
}

.btn-dados-page-active {
    background-color: white;
    color: #113260;
}

.email-input-dados-page {
    width: 100%;
    min-height: 52px;
    background-color: transparent;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(244, 244, 244, 0.445);
    color: white;
}

.email-input-dados-page::placeholder {
    color: rgba(244, 244, 244, 0.445);
}

.submit-dados-page-form {
    margin-top: 12px;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: white;
    color: #113260;
    border: none;
    font-weight: 700;
}

.submit-dados-page-form:hover {
    background-color: rgba(244, 244, 244, 0.445);
}

#form {
    display: flex;
}

#confirmacao-envio {
    display: none;
}

#enviando-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*Modal*/
.modal-title-box {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: fit-content;
    width: fit-content;
}

.modal-content-dados-page {
    background-color: #1e395f;
    color: white;
}

.modal-body-box {
    width: 100%;
    padding: 24px 16px;
    border-radius: 6px;
    border: 1px solid rgba(244, 244, 244, 0.445);
    text-align: justify;
}