body{
  width: 100%;
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
  overflow:hidden;
  background-image: url('../images/login/loginbg3.jpg');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.form-content{
 background-color: white;
 border-radius: 5px;
 box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
 padding: 20px;
}
.form-content input{
 margin-bottom: 10px;
 border-radius: 5px;
}
.form-content button{
 width: 100%;
 background-color: #1D1D53 !important;
 padding: 5px 0;
 border-radius: 5px;
 color: white;
}
.required-input{
  color: red;
  font-weight: bolder;
}
.form-content h2{
  font-weight: bolder;
}

@media  (max-width:768px ){
 .form-content input{
   margin-bottom: 20px;
   border-radius: 5px;
   padding: 10px 0 10px 10px;
   border: 1px solid lightgray;
 }
}