main{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
}

a h1{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 40px;
    color: #000;
    margin: 15px 0;
}

.container_info{
    width: 570px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border: 1px solid #BEBEBE;
    border-radius: 20px;
    margin-bottom: 10px;
    background-color: #fff;
}

.container_info h2{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 24px;
    margin: 40px 0 10px 0;
    color: #000;
}

.container_info p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.code_inputs{
    width: 75%;
    display: flex;
    justify-content: space-between;
    margin: 50px 0 15px 0;
}

.code_inputs input{
    width: 10%;
    height: 50px;
    border: 0.5px solid #000;
    padding-left: 15px;
    border-radius: 0;
    text-indent: 0px;
    font-size: 30px;
}

.container_label{
    width: 75%;
    display: flex;
    flex-direction: column;
}

label{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
}

.container_label label{
    color: #000;
    margin: 30px  0 9px 2px;
}

form input{
    width: 75%;
    height: 40px;
    border: 2px solid #848484;
    border-radius: 30px;
    text-indent: 15px;
}

input::placeholder{
    font-family: 'Inter';
    font-weight: 400;
    color: #717171;
    font-size: 14px;
}

.container_text{
    width: 70%;
}

.container_text p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    color: #717171;
    margin: 10px 0 20px 0;
}

form button{
    width: 75%;
    padding: 10px 0;
    border-radius: 30px;
    background-color: #336DD9;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    margin: 10px 0;
    transition: all 0.3s;
}

form button:hover{
    background-color: #2956AA;
}

.container_linha{
    width: 62%;
    margin: 35px 0 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.linha{
    width: 30%;
    height: 2px;
    background-color: #BEBEBE;
}

.container_linha p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #000;
}

.container_formas_login{
    width: 62%;
    display: flex;
    justify-content: space-between;
    padding: 0 3px;

}

.container_formas_login a{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    color: #504f4f;
    background-color: #fff;
    box-shadow: 1px 1px 5px #6b6b6b;
    padding: 5px 40px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.abrir_gmail{
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #0051FF;
    padding: 5px 40px;
    margin: 20px 0;
    border-radius: 10px;
}

.ja_tem_conta{
    margin: 30px 0 80px;
}

.ja_tem_conta p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
}

.ja_tem_conta p a{
    color: #0051FF;
    text-decoration: none;
}

.criar_conta{
    margin: 45px 0 45px;
}

.criar_conta a{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #0051FF;
    text-decoration: none;
}

.reenviar_email{
    margin-bottom: 20px;
}

.reenviar_email p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
}

.reenviar_email p a{
    color: #0051FF;
    text-decoration: none;
}

.termos_de_servico{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0 25px;
}

.termos_de_servico p{
    width: 75%;
    font-size: 13px;
}

.termos_de_servico p a{
    color: #0051FF;
    text-decoration: none;
}