@import url('https://fonts.googleapis.com/css2?family=Dai+Banna+SIL:wght@300&family=Open+Sans:ital,wght@0,400;1,300&family=Poppins:wght@300&family=Roboto:wght@100;300;500&display=swap');

*{
 font-family:Verdana, sans-serif;
 padding: 0px;
 margin: 0px;
 box-sizing: border-box;
 
 
}

body{
    background-image: linear-gradient(to top, #189fd4, #189fd4);
    height: 100vh;
    width: 100vw;
    position: relative;
}

#rg{
    overflow-x: hidden;
}

#title-res{
    font-family: 'Roboto', sans-serif;
}

#tela{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4198bb52;
    width: 300px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 8px #00000096;
    transition: width 0.5s, height 0.5s;
    transition-timing-function: ease;
}

#tela > #imagem{
    display: block;
    background: black url(../imgs/login.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 255px;
}

#title{
    text-align: center;
    font-size: 25px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

#hi{
    font-size: 5rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    text-shadow: 0px 0px 4px #000;
    font-weight: bold;
    
}

#formu{
    display: block;
    padding: 10px;
}

.form-control{
    margin-left: -2px;
}

#svg-user{
    width: 120px;
    margin: auto;
    margin-top: 5px;
}

svg{
    color: #189fd4;
    width: 30px;
}

.form-label{
    font-size: 0.9em;
    color: #fff;
    text-shadow: 0px 0px 2px #000;
    font-weight: bolder;
    width: 100%;
}

#card-register{
    box-shadow: 0px 0px 6px #000;
    background-color: #77a4b552;
    margin: auto;
    margin-top: 10px;
}
  
#sen{
    font-size: 22px;
    color: black;
}

.btn{
    display: block;
    margin: auto;
    margin-top: 20px;
    width:20vw;
    background-color: rgb(255, 255, 255) ;
    border-radius: 7px;
    border: none;
    padding: 5px;
    font-size: 15px;

}

.btn:hover{
    background-color: rgba(224, 222, 222, 0.664);
    
}

#btn-res{
    color: #000;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
}

#btn-acc{
    color: #0000ffbe;
}

#btn-acc:hover{
    text-decoration: underline;
}

#card-register{
    width: 97%;
}

.input-group > input{
    margin-top: -20px;
}

.input-group .inputs2{
    margin-top: 1px;
}

.input-group > .input{
    margin-top: -10px;
}

.input-group > span{
    margin-top: -20px;
}

#to-submit{
   display: block;
   font-family: 'Roboto', sans-serif;
   margin-top: 40px;
   margin-left: 170px;
   width: 150px; 
   box-shadow: 0px 0px 3px #000;
}

#root{
    margin: auto;
    width: 300px;
}

#logout{
    width: 250px;
    box-shadow: 0px 0px 4px #000;
    
}

#isenha{
    margin-left: -7px;   
}

.container > input:focus{
    background-color: white;
}

#svg-user{
    color: #fff;
    box-shadow: 0px 0px 10px #000;
    border-radius: 50%;
}



@media(max-width:320px){
    #tela{
        height:100%;
     }
}


@media (min-width:768px) {

#tela{
   width: 100%
}

#title{
    font-size: 35px;
}
   
#tela > #imagem{
   float: left;
   width: 55%;
   height: 100%;
 }

#card-register{
    width: 70%;
}
       
#formu{
    float: right;
    width: 45%;
}

.container > input{
    background-color: #b7e1f196;
    font-size: 1em;
    text-align: left;
    border-radius: 7px;
    width: 60%;
}


#formu > p{
    padding-bottom: 30px;
}

#to-submit{
    margin-left: 350px;
}

}

@media (min-width:992px) {
    
#tela{
    width: 950px;
}

#tela > #imagem{
    float: left;
    width: 50%;
}
    
#formu{
    float: right;
    width: 50%;
}
  
#formu > p{
    padding-bottom: 30px;
}
    
.container > input{
    background-color: #b7e1f196;
    font-size: 1em;
    text-align: left;
    border-radius: 7px;
    width: 60%;  
}
  
#to-submit{
    display: block;
    margin-left: 420px;
    width: 30%;
    margin-top: 40px;    
}

#card-register{
    width: 50%;
}

#root{
    margin: auto; 
    width: 420px;
}
    
}