*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
	
}
html,
body {
  height: 100%;
  background: linear-gradient(45deg, #49a09d, #5f2c82);
  font-family: BYekan;;
  font-weight: 100;
  direction: rtl;
  background-image: url(../images/abstract.png);
	background-position: center;
	background-size: auto 1100px;
}
body{
    background-color: #080710;
}
.background{
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.background .shape{
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}


form{
    height: 440px;
    width: 400px;
    background-color: rgba(255,255,255,0);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    padding: 35px 35px;
}
form *{
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-size: 18px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
}

label{
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}
input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
}
 
button{
  margin-top: 50px;
  width: 100%;
  background-color: #ffffff;
  color: #555;
  padding: 8px 0 12px 0;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  height: 45px;
  font-family: Vazir;
  font-size: 15px;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.message {
  opacity: 1;
  position: absolute;
  bottom: 125px;
  color: #ff0000;
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}

@font-face {
  font-family: Vazir;
  src: url('../fonts/Vazir/Vazir.eot');
  src: url('../fonts/Vazir/Vazir.eot?#iefix') format('embedded-opentype'),
       url('../fonts/Vazir/Vazir.woff') format('woff'),
       url('../fonts/Vazir/Vazir.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: BYekan;
  src: url('../fonts/BYekan+/BYekan+.ttf');
  font-weight: bold;
}

