body{
    margin-top: 0;
    width: 100dvw;
    height: 100dvh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background: rgb(246,182,192);
    background: -moz-linear-gradient(90deg, rgba(246,182,192,1) 0%, rgba(189,211,244,1) 50%, rgba(245,249,197,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(246,182,192,1) 0%, rgba(189,211,244,1) 50%, rgba(245,249,197,1) 100%);
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(189,211,244,1) 50%, rgba(245,249,197,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f6b6c0",endColorstr="#f5f9c5",GradientType=1);
}
.white{
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%);
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%);
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
img{
    width: 75%;
}
.titulo-modulo{
    position: absolute;
    top: 2rem;
    width: 100%;
    text-align: center;
    font-weight: 800;
    color: var(--azul-gov);
    font-size: .8rem;
    text-transform: uppercase;
}
.form-container{
    width: 75%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
input{
    width: 100%;
    height: 50px;
    border-radius: 100px;
    padding: 0 0 0 43px;
    border: 1px solid var(--cinza);
}
input:focus{
    outline: 1px solid var(--azul-gov);
    border: 1px solid var(--azul-gov);
}
input::placeholder{
    color: var(--cinza);
}
#cpf{
    background-image: url('../images/user-icon.svg');
    background-repeat: no-repeat;
    background-position: 15px center;
}
#password{
    background-image: url('../images/password-icon.svg');
    background-repeat: no-repeat;
    background-position: 15px center;
}

button{
    height: 50px;
    width: 100%;
    border-radius: 100px;
    background-color: var(--azul-gov);
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    color: #FFF;
    border: none;
}


@media (min: 700){

}

.criar-acesso-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input.modal-input{
    border: 1px solid var(--cinza);
    border-radius: 10px;
    height: 50px;
    padding: .75rem;
    font-size: 14px;
}

.divisor-acesso{
    display: flex;
    padding: 0px 12px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    color: var(--AZUL-GOV, #005CA9);
    font-family: Mulish;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-wrap: nowrap;
}

.divisor-acesso .line{
    width: 100%;
    height: 1px;
    background: var(--AZUL-GOV, #005CA9);
}

.acesso-buttons{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.button-criar-acesso{
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 27.5px;
    border: 1px solid var(--AZUL-GOV, #005CA9);
    color: var(--AZUL-GOV, #005CA9);
    background: var(--Backgrounds-Primary, #FFF);
}
.modal-conteudo{
    gap: 1rem;
    padding: 20px !important;
}
.criar-button{
    border-radius: 10px;
}
.modal-header h2{
    margin: 0;
    color: #005CA9;
}
