main {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    justify-content: space-between;
    min-height: 100vh;
}

#s1 {
    background: #359CF6;
    background: linear-gradient(179deg, rgba(53, 156, 246, 1) 0%, rgba(155, 208, 255, 1) 100%);
    min-height: 100vh;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#s2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    min-height: 100vh;
    padding: 2em;
    gap: 2em;
}

#s1titulo {
    font-size: 4em;
}

#titulo {
    font-size: 3em;
    color: #359CF6;
}

#s1descricao {
    font-size: 1.7em;
}

#s1descricao2{
    font-size: 1.6em;
}

.s1textos {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    gap: 0.5em;
}

.s1textos h1,
.s1textos p {
    text-align: center;
}

#logo {
    position: absolute;
    top: 1em;
    left: 1em;
    height: 4em;
}

#login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 1em;
    padding: 2em;
    width: 25em;
    gap: 1em;
    min-height: 30em;
}

.fa-right-to-bracket {
    margin-left: 0.5em;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    position: relative;
}

#entrar {
    width: 70%;
    padding: 0.5em;
    background-color: #359CF6;
    border-radius: 0.5em;
    color: white;
    font-weight: bold;
    border: none;
    font-size: 1em;
}

#entrar:hover {
    background-color: #2673b8;
    cursor: pointer;
}

.envio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 40em;
}

.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 1em;
    width: 35em;
}

#logoname {
    height: 10em;
}

.input {
    padding: 0.2em;
    width: 100%;
    border: none;
    border-radius: 1em;
    padding: 0.8em 1em;
    background-color: #EAF1F7;
    color: #BEB6AA;
}

.input::placeholder {
    color: #BEB6AA;
}

.input:focus {
    outline: none;
}

#ja-possui {
    font-size: 0.8em;
    text-decoration: none;
    color: #359CF6;
}

.gray {
    color: #BEB6AA;
}

#input-perfil,
#input-senha {
    height: 1.5em;
    position: absolute;
    right: 0.2em;
    top: 1em;
    padding: 0.2em;
    border-radius: 10em;
}

#input-perfil:hover,
#input-senha:hover {
    background-color: #f2f2f2;
}

.input-container-duplo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    width: 80%;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#perfil {
    height: 1.2em;
    position: absolute;
    top: 0.7em;
    left: 2em;
}

#carteira {
    height: 1.2em;
    position: absolute;
    top: 10.6em;
    left: 2em;
}

#emailicon {
    height: 1.2em;
    position: absolute;
    top: 3.9em;
    left: 2em;
}

#chave {
    height: 1.2em;
    position: absolute;
    top: 14em;
    left: 2em;
}

#chave2 {
    height: 1.2em;
    position: absolute;
    top: 17.4em;
    left: 2em;
}

#telefoneicon {
    height: 1.2em;
    position: absolute;
    top: 7.3em;
    left: 2em;
}

#acento{
    height: 1.4em;
    position: absolute;
    padding: 0.2em;
    top: 0.6em;
    right: 1.2em;
    border-radius: 10em;
}

#acento:hover {
    cursor: pointer;
    background-color: #fff;
}

@media screen and (max-width: 1022px) {
    #s1{
        display: none;
    }
    #s2 {
        width: 100%;
    }
}