*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
 
body{
   font-family: sans-serif;
   min-height: 100vh;
   color: #555;
   padding-top: 150px;
   background-color: #65717B;
}
 
form, .page{
   max-width: 50%;
   border:  thin solid #e4e4e4;
   padding: 20px 40px;
   border-radius: 5px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
   margin: 0 auto;
   background-color: #ffffff;
}
 
form h2, .page h2{
   font-size: 32px;
   line-height: 52px;
   color: #555;
   margin-bottom: 5px;
}
 
form h4, .page h4{
   margin-bottom: 30px;
   padding-bottom: 10px;
   border-bottom: thin solid #e4e4e4;
   line-height: 26px;
}
 
form h4 span{
   color: #af0c0c;
   font-weight: normal;
}
 
form > div{
   margin-bottom: 20px;
}
 
form .grid{
   display: grid;
   grid-template-columns: 1fr 1fr;
   grid-column-gap: 50px;
}
 
form label{
   display: block;
   margin-bottom: 10px;
   padding-left: 5px;
}
 
form input{
   display: block;
   width:  100%;
   padding: 10px;	
   margin-bottom: 10px;
   font-size: 16px;
   border:  thin solid #e4e4e4;
   margin-bottom: 30px;
   border-radius: 5px;
}
 
form input:focus
{
   outline: none;
}
 
form button{
   background: #32749a;
   color: white;
   border: none;	
   padding: 10px 30px;
   font-size: 16px;
   cursor: pointer;
   border-radius: 5px;
   margin-bottom: 10px;	
}
 
form button:active{
   background-color: green;
}
 
form p{
   margin-top: 15px;
}
 
form p a{
   display: inline-block;
   color: #006dbc;
   text-decoration: none;
}
 
form p a:hover{
   text-decoration: underline;
}
 
 .page a{
    display: inline-block;
    color: #006dbc;
    margin-top: 20px;	
 }
 
a.confirm-deletion{
   text-decoration: none;
   color: red;
   margin-left: 10px;
}
 
.error{
   margin-top: 30px;
   color: #af0c0c;
   line-height: 26px;
}
 
.success{
   margin-top: 30px;
   color: green;
}