@font-face {
    font-family: 'vazir';
    src: url('/font/vazir.eot'); /* IE9 Compat Modes */
    src: url('/font/vazir.eot') format('embedded-opentype'), /* IE6-IE8 */
         url('/font/Vazir.woff2') format('woff2'), /* Super Modern Browsers */
         url('/font/vazir.woff') format('woff'), /* Pretty Modern Browsers */
         url('/font/vazir.ttf')  format('truetype'); /* Safari, Android, iOS */
        /* url('webfont.svg#svgFontName') format('svg');*/ /* Legacy iOS */
  }

  * , *::after , *::before {
      box-sizing: border-box;
      padding: 0;
      margin: 0;
}

/* این استایل باعث میشه علامت چشم در مرورگر اج و اینترنت اکسپلورر حذف بشه */
input::-ms-reveal , input::-ms-clear {
    display: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: vazir;
    font-size: 1.5rem;
    height: 100vh;
}

.bing {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pass {
    position: relative;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pass input {
    width: 80%;
    padding: 20px;
    margin: 10px;
    font-family: vazir;
    font-size: 1.2rem;
    outline: none;
    border: solid 2px #1363DF;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.pass svg {
    position: absolute;
    right: 70px;
    cursor: pointer;
    opacity: 0.7;
    color: #383838;
}

.pass svg:hover {
    opacity: 1;
}
.pass .fa-eye-slash {
    display: none;
}
.hide .fa-eye {
    display: none;
}
.hide .fa-eye-slash {
    display: block;
}
