*{margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
body{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:100vh;
  background:#f9f9f9;
  padding:20px;
}
#formContainer {
  display: none;
}
.container{
  width:100%;
  max-width:450px;
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  text-align:center;
}

.heading h2{
    font-size: 20px;
    font-weight: 500;

}

.heading p{
    font-size: 16px;
    font-weight: 300;

}


header img{
    width:180px;
    margin-bottom:20px;
}
.btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  background:#7D003C;
  color:#fff;
  font-size:16px;
  margin-top:12px;
  cursor:pointer;
  transition:0.3s;
  font-weight:600;
}
.primary-btn:hover{
    background:#D09824;
}
.back-btn{
  background:transparent;
  border:none;
  color:#444;
  margin-top:15px;
  font-size:15px;
  cursor:pointer;
  text-decoration:underline;
}
input{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:15px;
  margin:10px 0;
}
.hide{
    display:none;
}
@media(max-width:776px){
  .container{
    padding:18px;
}
  header img{
    width:140px;
}

.heading h2{
    font-size: 16px;
    font-weight: 500;

}

.heading p{
    font-size: 14px;
    font-weight: 300;

}
}
