*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
     background-image: url("../img/background.svg");
    background-size: cover;
    background-repeat: no-repeat;
}


/* .container{
    width: 100%;
} */

.logo-gparana{
    margin: 3em auto 3em auto;
    display: flex;
    justify-content: center;
}
.logo-gparana img{
    width: 200px;
    height: 150px;    
}

.titulo-gparana{
    display: flex;
    justify-content: center;
}

.titulo-gparana h1{
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: #082382;
    
}

.titulo-gparana p{
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #2B2525;
    text-align: center;
    margin: 2em auto 2em;
}


.formulario{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.formulario label{
    font-family: 'Inter', sans-serif;
    color: #2B2525;
}
.formulario input{
    margin-top: 1.5em;
    width: 394px;
    height: 48px;
    border-radius: 0.3em;
    border-style: none;
    background-color: #C5D5FF;
    padding: 18px 30px 20px 45px;
}

.input-check input{
    width: 1.5em;
    /*width: 18px;*/
    margin-bottom: 12px;    
    display: flex;
}

.input-check div{
    display: flex;
}
.input-check p{
    font-family: 'Inter', sans-serif;
    color: #2B2525;
    align-self: center;
    margin: 2.3em auto auto 1em;
}
.email,input{
    margin-bottom: 19px;
}
.formulario button{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background-color: #6885EC;
    margin-top: 19px;
    width: 394px;
    height: 48px;
    border-radius: 0.4em;
    border-style: none;
    cursor: pointer;
}

.formulario button:hover{
    background-color: #88A0F7;
    color: #FAFAFF;
    transition: 0.2s;
}


.detalhes{
    margin-top: 2em;
    display: flex;
    justify-content: center;
}
.detalhes div{
    text-align: center;
}

.detalhes a{
    margin: 1em;
    display: block;
}
a{
    font-family: 'Inter', sans-serif;
    color: #2B2525;
}


.icon-content{
    position: relative;
    
}

.icon{
    position: absolute;
    top: 2.3em;
    left: 0.8em;
}


.erroLogin{
    display: flex;
    width: 50%;
    background-color: red;
    ;
}


    @media (max-width:600px){
        html{
            background-image: url("../img/background_small.svg");
        }
        .logo-gparana{
            margin: 0 auto 2em auto;
        }
        .logo-gparana img{
            width: 125px;
            height: 107px;
        }

        .titulo-gparana h1{
            font-size: 21px;
        }

        .formulario form{
            width: 100%;
            font-size: 15px;
            margin: 0 0em 0 2em;
        }

        .formulario form input[type=email],input[type=password],input[type=text]{
            width: 90%;
        }

        .formulario form button{
            width: 90%;
            margin-top: -1em;
        }
        
        .detalhes{
            margin-top: 0em;
        }
        
       



}