@font-face {
  font-family: 'dana';
  src: url(../font/dana-regular.ttf);
}
@font-face {
  font-family: 'dana-bold';
  src: url(../font/dana-bold.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'dana';
  }
  
  body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
  }

  .hidden {
    display: none;
  }
  
  .container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
  }

  .add-space {
    margin-top: 700px;
  }
  
  .add-space-100 {
    margin-top: 100px;
  }
  
  .add-space-200 {
    margin-top: 299px;
  }
  
  .main-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-box h2 {
    margin: 0 0 15px;
    padding: 0;
    color: #333;
    text-align: center;
    text-transform: uppercase;
  }
  
  .user-box {
    position: relative;
    margin-bottom: 30px;
  }
  
  .pass-box {
    margin-bottom: 0;
  }
  
  .hint-box {
    text-align: right;
    direction: rtl;
  }

  .hint-notif {
    text-align: center;
    color: red;
  }
  
  .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    background: transparent;
  }
  
  .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    pointer-events: none;
    transition: 0.5s;
  }
  
  .user-box input:focus ~ label,
  .user-box input:valid ~ label {
    transform: translateY(-20px);
    font-size: 14px;
    color: #333;
  }
  
  .button-flt {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 5px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 4px;
    border: 1px solid #ffffff00;
  }
  
  .button-flt:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
  }
  
.button-gls {
  display: inline-block;
  align-items: center;
  font-family: inherit;
  font-weight: bold;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: #ad5389;
  background: linear-gradient(0deg, rgba(20,167,62,1) 0%, rgba(102,247,113,1) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 20em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-gls:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.button-gls:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}

.button-glb {
  background-color: #0078d0;
  border: 0;
  border-radius: 56px;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  outline: 0;
  padding: 16px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-glb:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.button-glb:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

@media (min-width: 768px) {
  .button-glb {
    padding: 16px 18px;
  }
}
  
.btn-effect span {
    position: absolute;
    display: block;
  }
  
.btn-effect span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: #333;
    animation: animate1 1s linear infinite;
  }
  
  .submit-btn {
    width: 100%;
    text-align: center;
  }
  
  @keyframes animate1 {
    0% {
      left: -100%;
    }
    50%,
    100% {
      left: 100%;
    }
  }
  
  .btn-effect span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #333;
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
  }
  
  @keyframes animate2 {
    0% {
      top: -100%;
    }
    50%,
    100% {
      top: 100%;
    }
  }
  
  .btn-effect span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background-color: #333;
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
  }
  
  @keyframes animate3 {
    0% {
      right: -100%;
    }
    50%,
    100% {
      right: 100%;
    }
  }
  
  .btn-effect span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #333;
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
  }
  
  @keyframes animate4 {
    0% {
      bottom: -100%;
    }
    50%,
    100% {
      bottom: 100%;
    }
  }
  
  .password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
  .password-toggle-icon i {
    font-size: 18px;
    line-height: 1;
    color: #333;
    transition: color 0.3s ease-in-out;
    margin-bottom: 20px;
  }
  
  .password-toggle-icon i:hover {
    color: #000;
  }

.ul-items:hover {
    cursor: pointer;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transform: scale(1.1);
    border: solid 1px #cdd1d025;
    
}

.linkurl {
    color: #007dd0;
    font-weight: bold;
}

.linkurl:before {
    font-family: "FontAwesome";
    content: "\f00c";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
}

.right-side-item {
  width: 100%;
  height: 40px;
  margin: 7px 0 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: solid 1px transparent;
  border-radius: 5px;
  box-shadow: rgba(165, 163, 163, 0.02) 0px 1px 3px 0px, rgba(175, 177, 180, 0.15) 0px 0px 0px 0.5px;
  transition: 250ms;
  direction: rtl;
}

video {
    width: 280px !important;
}

.big-btn {
  width: 100%;
}

.mid-btn {
  width: 50%;
  font-size: 14px;
}

.mid-btns {
  display: flex;
  gap: 4px;
}

.btn-blue {
  background-color: #007bff;
}

.btn-green {
  background-color: #3aa55c;
}

.btn-gray {
  background-color: #8b8b8b;
}

.btn-chocolate {
  background-color: chocolate;
}

.noClick {
  pointer-events: none;
}

.align-center {
  text-align: center;
}

.rtl {
  text-align: right;
  direction: rtl;
}

.rtl-center {
  text-align: center;
  direction: rtl;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb15 {
  margin-bottom: 15px;
}