*{
    box-sizing:border-box;
    margin:0%;
    padding: 0%;
    font-family: "Poppins", sans-serif;
}
body{
      background-color:#F4EFEF;
}
header{
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.7);
}
.logo{
    height: 8vh;
}
section{
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}
#login{
    width: 50%;
    height: 50vh;
    background-color: #8F8CF0;
    border-radius: 50px;
    align-items: center;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    text-align: center;
}
#login div{
    text-align: center;
}
h2{
    color: white;
   
}
p{
    margin-top: 2%;
    margin-bottom: 2%;
}
#texto{
    margin-top: 10%;
}
input{
    border-radius: 50px;
    border-color: #8F8CF0;
    padding: 8px 200px;
}
a{
    text-decoration: none;
    color: white;
    background-color: #FF9770;
    padding: 1% 6%;
    border-radius: 50px;
    margin-top: 3%;

}