@charset "UTF-8";

/*
 Romã Vermelho – #D9534F
 Rosa pêssego - #F7A68E
 Verde folha - #6BA368 
 Bege Neutro – #EADBC8
 Marrom Amadeirado – #8B5E3C
 Vermelho Tapete – #A22B2B
 
 */

*{  
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;

}
body, html{ 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;  
    background-color: #6BA368;
    width: 100vw;
    height: 100vh;
     
}
main{   
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section#login{  
    
    
    background-color: white;
    width: 300px;
    height: 550px;

    border-radius: 10px;
    overflow: hidden;
    
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.425);
    transition: width .3s, height .3s;
    transition-timing-function: ease;
    
    
}


section div#img{    
    display: block;
    background:  url(../imagens/pexels.jpg) no-repeat;
    height: 200px;
    background-size: cover;
    background-position: center center;
    opacity: 90%;  
}


section div h1{ 
    text-align: center;
    font-size: 25px;
    padding-bottom: 5px;
    padding: 10px;
}
section div#formulario{ 
   display: block;
   
}

section div#formulario p{ 
    text-align: justify;
    text-align: center;
    font-size:14px;  
    padding-bottom: 10px;
    
}

form > div.campo{ 
    display: block;   
    background-color:#416340 ;
    margin: auto;
    width: 90%;
    height: 40px;
    margin-top: 5px;
    border-radius: 5px;
     
}

div.campo > label{  
    display: none;
}

div.campo input { 
   background-color: #F7A68E;
   padding: 5px; 
   height: 95%; 
   width: calc(100% - 45px);
   border-radius: 10px;
   border: none;
   
   border: 2px solid #416340;
   transform: translateY(-12px);
}
div.campo input:focus-within{   
    background-color: white;
}

div.campo span{ 
    
    color: white;
    font-size: 2em;
    margin-top: 1px;
    padding: 3px;
    width: 40px;

}

form input[type=submit]{    
    display: block;
    background-color: #D9534F;
    color: black;
    width: 90%;
    height: 35px;
    margin: auto;
    margin-top: 10px;
    padding-bottom: 5px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}
form input[type=submit]:hover{  
    background-color: #A22B2B ;

}



form a.botao{   
   display: block;
   background-color:  white; 
   color: rgb(0, 0, 255);
   text-decoration: none;
   text-align: center;
   width: 90%;
   height: 35px;
   margin: auto;
   margin-top: 10px;
   padding-top: 3px;
   padding-bottom: 10px;
   border: 1px solid #F7A68E;
   border-radius: 5px;
  
}
 form a.botao:hover{    
    background-color: #F7A68E;
 }

 form a.botao span{ 
    font-size: 1em;
 }


