* {
  margin: 10px;
  padding: 0;
  box-sizing: border-box;
  font-family: cursive;
  }
body 
{
  background: #78e099;
    display: 0,10px;
    text-align: center;
    min-height: 100vh;
    flex-direction: column;
}
.logo
{
    position: absolute;
    top: 5px;
    right: 5px;
    max-width: 50px;
    width: 100%;        
}
.tophead {
    position: center;
    top: 20px;
    left: 10px;
    color: #4612e4;
    font-size: 14px;
    font-weight: bold;
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #eae9e7;
  padding: 50px;
  border-radius: 10px;  
  width: 400px;  
}
.container .title
{
    font-size: 35px;
    font-weight: 700;
    color: #db493f;
    position: bottom;
}
.container .form
{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.container .form .inputfield
{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 3px;
    border-radius: 10px;
    font-size: 16px;       
}
.container .form .inputfield label
{
    width: 50px;
    margin-right: 30px;
    font-size: 16px;
    color: #0c0c0c;
}
.container .form .inputfield .btn
{
    width: 100%;
    padding: 8px, 10px;
    font-size: 30px;
    border: 2px;    
    color: #54b539;
    cursor: pointer;
    border-radius: 4px;
}
.container .form .inputfield .btn:hover
{
    width: 100%;
    padding: 8px, 10px;
    font-size: 30px;
    border: 0;
    background: #9c4f8c;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}
.output p
{
    font-size: 10px;
    color: rgb(56, 55, 55);
    margin-bottom: 10px;
}
@media (max-width: 420px)
 {
    .container .form .inputfield
{
    flex-direction: column;
    align-items: flex-start;     
}
 }
.site-footer .footer
{
  /* This will push the footer to the bottom */
  margin-top: auto;
  margin-bottom: 15px; 
  background-color: #752c2c;
  color: white;
  padding: 1rem;
  text-align: center;
}
@media (max-width:900px){
  .nav a{margin:0 10px}
  .hero{padding:48px 0}
  .hero-title{font-size:2.6rem}
  .features-inner{gap:12px}
  .feature-card{width:220px}
}

@media (max-width:520px){
  .header-inner{padding:0 8px}
  .nav{display:none}
  .hero-title{font-size:2.25rem}
  .feature-card{width:100%;max-width:420px}
  .container{padding:0.75rem}
}