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

.divCriarConta{
    text-align: center;
}

.linkCriarConta{
    color: #0072c4;
    text-decoration: none;
}

.linkCriarConta:hover{
    text-decoration: underline;
}

.linkWpp{
    position: fixed;
    background-color: none;
    background-image: url(../assets/logoWpp2.png);
    background-size: cover;
    height: 75px;
    width: 100px;
    bottom: 7%;
    right: 10%;

}

header{
    height: 4rem;
    max-width: 50%;
    background-color: none;
    display: block;
    justify-content: space-around;
    
}

.logo-imagem{
    height: 200px;
    background-color: none;

   
}

img{
    width: 150px;
    }

hr{
    background-color: rgb(12, 68, 102);
    border: none;
    height: 2px;
    width: 80%;
    margin-top: 5rem;
    margin-bottom: 2rem;
}

body{
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    padding-left: 1rem;
    padding-right: 1rem;
}

h1,h2{
    font-size: 2rem;
    color: rgb(12, 68, 102);
    margin-bottom: 2rem;
    line-height: 3rem;
}

form{
    width: 100%;
    max-width: 32rem;
    font-size: 1.125rem;
}

label, input, textarea, button{
    display: block;
    width: 100%;
}

label{
    color: black;
    font-weight: bold;
    line-height: 1;
    margin-top: 1rem;
    margin-bottom: 0.7rem;
}

input, textarea{
    font: inherit;
    padding: 0.8rem;
    border: 1px solid rgb(202, 202, 187) ;
    border-radius: 4px;
    transition: border-color, box-shadow 0.2s;
}

textarea{
    min-height: 13rem;
    resize: vertical;
}

input:hover, 
input:focus,
textarea:hover,
textarea:focus{
    outline: none;
    border-color: #09d;
    box-shadow: 0 0 0 1px #4dc8ff ;
}

.form_button{
    margin-top: 1rem;
    display: block;
    padding: 1rem;
    background-color: #0072c4;
    color: white;
    font: inherit;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.form_button:hover,
.form_button:focus{
    outline: none;
    background-color: #09d;
}

.container-checkbox {
  display: flex;
  align-items: center;
}

input[type="checkbox"] {
  margin-right: 10px;
}


@media screen and (max-width:500px) {

.linkWpp{
        position: fixed;
        background-color: none;
        background-image: url("../assets/logoWpp2.png");
        background-size: cover;
        height: 75px;
        width: 100px;
        bottom: 9%;
        right: 1%;
        }


}


