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;
}

.s1textos {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    gap: 1em;
}

.s1textos h1,
.s1textos p {
    text-align: center;
}

#s2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
    min-height: 100vh;
    padding: 2em;
    gap: 2em;
}

.fa-right-to-bracket {
    margin-left: 0.5em;
}

#logo {
    position: absolute;
    top: 1em;
    left: 1em;
    height: 4em;
}

#s1titulo {
    font-size: 4em;
}

#titulo {
    color: #359CF6;
}

#s1descricao {
    font-size: 1.5em;
}

#olho {
    height: 1.2em;
    position: absolute;
    right: 0.8em;
    top: 0.7em;
}

.input-container {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80%;
    gap: 0.3em;
}

.white {
    color: white;
}

.envio {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 80%;
}

#input-perfil {
    height: 1.2em;
    position: absolute;
    left: 0.4em;
    top: 0.6em;
}

#input-senha {
    height: 1.2em;
    position: absolute;
    left: 0.4em;
    top: 4em;
}

#entrar {
    background-color: #359CF6;
    color: white;
    border: none;
    border-radius: 0.5em;
    padding: 0.8em 1em;
    width: 100%;
    font-size: 1em;
    cursor: pointer;
}

#entrar:hover {
    background-color: #2b7ec6;
}

#outra-opcao {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    font-size: 0.8em;
    color: #359CF6;
    text-align: center;
    width: 100%;
}

.row {
    background-color: #BEB6AA;
    height: 1px;
    width: 35%;
}

.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 1em;
    width: 20em;
}

.input {
    padding: 0.2em;
    width: 100%;
    border: none;
    border-radius: 1em;
    padding: 0.8em 1em;
    background-color: #EAF1F7;
    color: #BEB6AA;
}

.input:focus {
    outline: none;
}

.input::placeholder {
    color: #BEB6AA;
}

.redes {
    display: flex;
    gap: 1em;
}

.rede {
    height: 1.8em;
}

.gray {
    color: #BEB6AA;
}

#esqueci {
    font-size: 0.8em;
    text-decoration: none;
    color: #359CF6;
    text-align: right;
    width: 100%;
}

#cadastro {
    font-size: 0.8em;
    text-decoration: none;
    color: #359CF6;
    text-align: center;
    width: 100%;
    margin-top: 1em;
}

#esqueci:hover,
#cadastro:hover {
    color: #005CC0;
}

input:placeholder-shown {
    color: #828282;
}

@media screen and (max-width: 800px) {
    #s1 {
        display: none;
    }

    #s2 {
        width: 100%;
    }
}