@font-face {
    font-family: iryekan;
    src: url('../fonts/iranyekan.woff') format('woff');
}
body{
    font-family: iryekan;
}
.bg{
    height: 100vh;
    /* background-image: url('../images/bg-1.jpg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.main-box{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    width: 60%;
    height: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 25px;
    box-shadow: 0px 0px 14px 2px rgba(0,0,0,0.56);
}
.item-box{
    width: 100%;
    height: 100%;
    padding: 5px;
}
.sitelogo{
    width: 20%;
    display: block;
    margin: auto;
}
.form-control{
    border-radius: 50px;
}
.next-btn{
    border-radius: 15px;
}
.btn-box{
    display: flex;
    grid-gap: 0.7rem;
}
@media only screen and (max-width: 900px) {
  .box{
    width: 85%;
  }
  .sitelogo{
    width: 50%;
  }
  .next-btn{
    width: 100%;
  }
}