 /*Registration & Login Form starts*/
 .main-parent{
  width: 100%;
  height: 100vh;
  background-image: url("images/Background\ 1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-parent .form-wrap{
  width: 450px;
  background: gray;
  border-radius: 10px;
  padding: 35px 40px;
  backdrop-filter: blur(5px);
}
.main-parent .form-wrap h1{
  font-variant: small-caps;
  font-size: 45px;
  text-align: center;
  margin-bottom: 15px;
}
.main-parent .form-wrap h1 span{
  color: orange;
}
.main-parent .form-wrap .single-input input{
  width: 100%;
  padding: 14px 10px;
  border: 1px solid black;
  outline: none;
  background-color: transparent;
  margin-bottom: 10px;
  font-size: 15px;
  font-family: sans-serif;
  background-color: white;
}
.Submit-button{
  text-align: center;
}
.Submit-button input{
  padding: 13px 30px;
  background-color: white;
  outline: none;
  border: none;
  color: black;
  font-family: sans-serif;
  font-size: 15px;
  cursor: pointer;
  border-radius: 20px;
}

.Submit-button input:hover{
  opacity: 0.8;
    color: orange;

}

.account-have{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}
.account-have a{
  color: white;
  text-decoration: none;
  font-family: sans-serif;
}

.account-have a:hover {
  text-decoration: underline;
  color: orange;
}


/*Registration & Login Form ends*/

