@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

*{
    font-family: Google Sans;
    font-size: large;
}
main{
    margin: 30px;
}
.container{
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.boxLogin{
    max-width: 400px;
    min-width: 200px;
    margin: 0 auto;
    border: 3px solid #d6d6d6;
    border-radius: 50px;
    padding: 30px;
}
.logoTitulo{
    display: flex;
    justify-content: center;
}
h1{
    margin: 0;
    font-size: 30px;
}
img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
hr{
    border: 1px solid #d6d6d6;
    margin-bottom: 20px;
}
.campoTexto{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
label{
    margin-bottom: 5px;
}
input{
    padding: 20px;
    background-color: #d6d6d6;
    border: 0px;
    border-radius: 10px;
    font-size: medium;
}
input:hover{
    outline: 2px solid #D62D20;
    outline-offset: -2;
    transition: 0.3s;
}
input:focus{
    outline: 2px solid #D62D20;
    outline-offset: -2;
    transition: 0.3s;
    background-color: white;
}
button{
    width: 100%;
    padding: 10px;
    border: 0px;
    border-radius: 20px;
    background-color: #0b57d0;
    color: white;
    font-weight: bold;
    margin-top: 20px;
}
button:hover{
    background-color:#FEA510;
    transition: 0.3s;
}
a{
    margin-top: 5px;
    text-align: right;
    font-size: small;
    color: #0b57d0;
}
a:hover{
    color:#008645;
    transition: 0.3s;
}

footer p{
    text-align: center;
    font-size: small;
    color: #d6d6d6;
}
