* {
    padding: 0;
    margin: 0;
    color: #1a1f36;
    box-sizing: border-box;
    word-wrap: break-word;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        Helvetica Neue, Ubuntu, sans-serif;
}

.logo {
    position: absolute;
    width: 200px;
    height: 100px;
    margin-left: 20px;
}

h1 {
    color: #5469d4;
    text-decoration: unset;
}

input {
    outline: none;
}

.context {
    width: 100%;
    position: absolute;
    top: 5vh;
}

.context h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
}

.area {
    background: #ececec;
    background: -webkit-linear-gradient(to left, #ececec, #ececec);
    width: 100%;
    height: 160vh;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(0, 131, 33, 0.49);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
.validation:placeholder-shown,
.invalid {
    box-shadow: 0 0 10px 0 rgba(255, 0, 0, 0.5) !important;
}

#confirmarTelefone {
    text-align: center;
}

#confirmarTelefone h4 {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

#root {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    box-sizing: border-box;
}

#page-content {
    display: flex;
    flex-grow: 1;
    z-index: 1;
    flex-direction: column;
}

#title {
    text-align: center;
    margin: 2rem 1rem 1.5rem;
}

#form-background {
    padding: 2.5rem;
    padding-bottom: 1.5rem;
    border-radius: 0.5rem;
    width: 55vw;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

#form-background h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

#form-background #results {
    font-size: 1.2rem;
    text-align: center;
}

#form-background #results > div + div {
    margin: 1.25rem 0;
}

#form-background .thanks {
    text-align: center;
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

#form-background .agradecimentos {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

#form-background.thanksPage {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#form-background.thanksPage .valor {
    line-height: 40px;
    border-radius: 5px;
    outline: 0;
    padding-left: 10px;
    border: 1px solid #acacac;
    width: 60%;
    text-align: left;
    margin: 0 auto;
    text-align: center;
}

#form {
    width: 100%;
    position: relative;
}

#form #pages {
    position: relative;
}

#form .form-fields {
    width: 100%;
    transition: 0.75s;
    position: absolute;
    filter: opacity(0);
    z-index: -1;
}

#form .form-fields.show {
    z-index: 1;
    filter: opacity(100%);
}

#form .field {
    margin: 0.5rem 0;
}

#form .form-fields .field {
    width: 100%;
    padding: 0 8px;
}

#form .form-fields .checkbox-fields {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    margin: 0.75rem 0;
    font-size: 1.1rem;
}

#modal {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: #ffffff;
    border-radius: 0.25rem;
    width: fit-content;
    max-width: 85vw;
    padding: 1.5rem 1rem;
    display: flex;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    transform: scale(0);
    z-index: 2;
    transform-origin: right top;
}

#modal.show {
    transform: scale(1);
}

#modal #message {
    margin-right: 1rem;
    font-size: 1.2rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
}

#modal #icon {
    width: 3rem;
}

#modal #icon img {
    width: 100%;
}

#modal #timer-div {
    height: 7px;
    width: 0%;
    transition: 0.1s;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    background-color: rgb(110, 110, 110);
    position: absolute;
    bottom: 0;
    left: 0;
}

#footer {
    margin: 1rem auto;
    font-size: 0.9rem;
    width: 90vw;
    display: flex;
    flex-direction: column;
}

#footer span {
    text-align: center;
    margin: 0.5rem;
}

#footer span a {
    color: #949494;
}

#pages-checkbox,
#page-third-checkbox {
    position: absolute;
    visibility: hidden;
    z-index: 11;
}

#pages-checkbox:not(:checked) ~ #first-page {
    height: unset;
}

#pages-checkbox:not(:checked) ~ #second-page {
    display: none;
}

#page-third-checkbox:not(:checked) ~ #third-page {
    display: none;
}

#pages-checkbox:checked ~ #first-page {
    display: none;
}

#pages-checkbox:checked ~ #second-page {
    height: unset;
}

#page-third-checkbox:checked ~ #third-page {
    height: unset;
}

#dtNasc1PSegText,
#dtNasc2PSegText {
    display: none;
}

.flex-flex {
    display: flex;
}
.align-center {
    align-items: center;
}
.center-center {
    align-items: center;
    justify-content: center;
}
.box-root {
    box-sizing: border-box;
}
.flex-direction--column {
    -ms-flex-direction: column;
    flex-direction: column;
}
.loginbackground-gridContainer {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [start] 1fr [left-gutter] (86.6px) [16] [left-gutter] 1fr
        [end];
    grid-template-columns: [start] 1fr [left-gutter] repeat(16, 86.6px) [left-gutter] 1fr [end];
    -ms-grid-rows: [top] 1fr [top-gutter] (64px) [8] [bottom-gutter] 1fr
        [bottom];
    grid-template-rows: [top] 1fr [top-gutter] repeat(8, 64px) [bottom-gutter] 1fr [bottom];
    justify-content: center;
    margin: 0 -2%;
    transform: rotate(-12deg) skew(-12deg);
}
.box-divider--light-all-2 {
    box-shadow: inset 0 0 0 2px #e3e8ee;
}
.box-background--blue {
    background-color: #5469d4;
}
.box-background--white {
    background-color: #ffffff;
}
.box-background--blue800 {
    background-color: #212d63;
}
.box-background--gray100 {
    background-color: #e3e8ee;
}
.box-background--cyan200 {
    background-color: #7fd3ed;
}
.padding-top--64 {
    padding-top: 64px;
}
.padding-top--24 {
    padding-top: 24px;
}
.padding-top--48 {
    padding-top: 48px;
}
.padding-bottom--24 {
    padding-bottom: 24px;
}
.padding-horizontal--48 {
    padding: 48px;
}
.padding-bottom--15 {
    padding-bottom: 15px;
}

.flex-justifyContent--center {
    -ms-flex-pack: center;
    justify-content: center;
}

.formbg {
    margin: 0px auto;
    width: 100%;
    max-width: 448px;
    background: white;
    border-radius: 4px;
    box-shadow: rgba(60, 66, 87, 0.12) 0px 7px 14px 0px,
        rgba(0, 0, 0, 0.12) 0px 3px 6px 0px;
}
label {
    margin-bottom: 10px;
}

label input[type="checkbox"] {
    display: inline;
}
.reset-pass > a {
    text-align: right;
    margin-bottom: 10px;
}
.grid--50-50 {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.field input:not(input[type="checkbox"]),
button[type="button"] {
    font-size: 16px;
    line-height: 28px;
    padding: 8px 16px;
    width: 100%;
    min-height: 44px;
    border: unset;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(60, 66, 87, 0.25);
}

#submit {
    width: 100%;
    padding: 0.7rem;
    font-size: 1rem;
    outline: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

#submit,
button[type="button"] {
    background-color: #00361B;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px,
        #00361B 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
        rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
input[type="checkbox"] {
    font-size: 16px;
    line-height: 28px;
    padding: 8px 16px;
}
.field-checkbox input {
    width: 20px;
    height: 15px;
    margin-right: 5px;
    box-shadow: unset;
    min-height: unset;
}
.field-checkbox label {
    display: flex;
    align-items: center;
    margin: 0;
}
a.ssolink {
    display: block;
    text-align: center;
    font-weight: 600;
}
.footer-link span {
    font-size: 14px;
    text-align: center;
}
.listing a {
    color: #697386;
    font-weight: 600;
    margin: 0 10px;
}

.button-radio{
    width: 20px !important;
}

@media screen and (max-width: 1100px) {
    #form-background.thanksPage {
        width: 80vw;
    }
    .logo {
        position: relative;
        margin: 0 auto;
    }
}

@media screen and (max-width: 760px) {
    #form-background.thanksPage {
        width: 90vw;
    }
}

@media screen and (max-width: 800px) {
    #form-background {
        position: relative;
        width: 75vw;
    }

    #dtNasc1PSegText,
    #dtNasc2PSegText {
        display: unset !important;
    }

    #dtNasc1PSegDate,
    #dtNasc2PSegDate {
        display: none !important;
    }

    #submit {
        margin-top: 10px;
    }
}

@media screen and (max-width: 580px) {
    #form-background {
        width: 90vw;
    }

    #form-background.thanksPage .valor {
        width: 85%;
    }

    #footer {
        flex-direction: column;
        text-align: center;
    }
    
    .obrigado-text{
        font-size: 2rem !important;
    }
}
