
.container{
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content{
    background-color: #fff;
    width: 80%;
    height: 80%;
    max-height: 500px;
    max-width: 1150px;
    justify-content:center;
    align-items: center;
    display: flex;
}

.info{
    text-align: right;
    background-color: #fff;
    position: relative;
    height: 100%;
    max-width: 800px;
    padding-right: 30px;
}

.info h1{
    text-align: right;
    margin-top: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 12rem;
    color: var(--azul-escuro);
    font-weight: 900;
    position: relative;
}
.info h1:before{
    content:"PLATAFORMA";
    font-size: 2rem;
    position: absolute;
    top: -1rem;
    right:10px;
    padding-left: 10px;
}

.descricao{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.descricao p{
    line-height: 1.5rem;
    max-width: 500px;
    padding-bottom: 20px;
}

.descricao p a{
    color: var(--azul-escuro);
    font-weight: bold;
    text-decoration:underline;
}

.descricao p a:hover, .descricao p a:focus, .descricao p a:active{
    color: var(--azul-claro);
}

.login{
    position: relative;
    background: rgb(18,41,50);
    background: linear-gradient(120deg, var(--azul-claro) 16%, var(--azul-escuro) 77%);
    color: #fff;
    height: 100%;
    width: 100%;
    max-width: 350px;
    padding: 20px 40px 40px 40px;
}

.login h3{
    font-size: 2rem;
    padding-bottom: 40px;
}

form label{
    font-weight: 300;
    font-size: 1.3rem;
}

form input:focus{
    outline: none;
}

form .texto{
    margin-top: 10px;
    margin-bottom: 20px;
    background-color:transparent;
    height: 2rem;
    font-size: 20px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    color: white;
}

form .submit, .enviar{
    text-align: center;
    font-size: 1.3rem;
    padding: 10px;
    border: 0;
    background-color: white;
    color: var(--azul-escuro);
    font-weight: 900;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all .35s;
    position: relative;
}

form .submit:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: orange;
    transition: all .35s;
}

form .submit span{
    position: relative;
    z-index: 2;
  }

form .submit:hover, form .submit:active{
    color: white;
}

.enviar:hover{
    background-color: orange;
    color: white;
}

form .submit:hover:after{
    width: 100%;
}

small{
    display:block;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

small a{
    color: white;
    font-weight: bold;
}

.link_icones{
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
}
.link_icones img{
    height: 20px;
    width: auto;
}
.mover_esquerda{
    margin-left: -2px;
}

.pin{
    position: absolute;
    top: 0;
    right: 40px;
    height: 60px;
    width: auto;
}



@media screen and (max-width: 1150px){
    .content{
        flex-direction: column;
    }

    .info, .login, .content, .container{
        width: 100%;
        max-width: 100%;
        max-height: unset;
        height: auto;
    }


    .info{
        max-width: 350px;
        padding-top: 25px;
        padding-right: 0;
    }

    .info h1{
        text-align: center;
        font-size: 6rem;
    }

    .info h1:before{
        text-align: center;
        right:unset;
    }

    .descricao{
        align-items: center;
        justify-content: center;
        max-width: 350px;
        align-content: center;
        text-align: center;
        flex-wrap: nowrap;
    }

    .login{
        max-width: 350px;
    }
}

