
body{
    background-color: lightgrey;
    font-family: 'poppins' ,sans-serif ;
}

#form{
 width: 272px;
 margin: 20vh auto 0  auto;
 padding: 40px;
 background-color: white;
 border: 4px;
 font-size: 20px;
 height: 70vh;
 color: black;
 font-weight: bold;
 
 

 

}
#form h1{
    color: black;
    text-align: center;
    font-weight: bold;
}
#form button{
    padding: 20px;
    margin-top: 35px;
    width: 105%;
    background-color:lightskyblue;
    border: none;
    border-radius: 2px;
    font-size: 20px;
    font-weight: bold;
    color: white;

    
}
.input-control{
    display: flexbox;
    flex-direction: column;
}
.input-control input{
    border: 2px solid hwb(219 55% 6%);
    border-radius: 4px;
    display: block;
    font-size: 20px;
    padding: 10px;
    width: 100%;
}
.input-control input:focus {
    outline: 0;
}
.input-control.success input{
    border: #09c372;
}
.input-control.error input{
    border:  #ff3860;
}
.input-control .error{
    border: #ff3860;
    font-size: 9px;
    height: 13px;
}
.logo-row {
    width: 250px;
    margin: 0 auto;
    position: absolute;
}

.logo {
    width: 100%;
    height: 100px;
    text-align: center;
}
.container p{
    text-align: center;
}