
::-webkit-scrollbar{
    display: none;
}
*{
    font-family: "Raleway", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
body {
  margin: 0;
  padding: 0;
}
.loader h1 {
    background: #113b34;
    position: fixed;
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
    z-index: 1000000000000;
    margin: 0;
    padding: 0;
    font-family: ‘Arial Narrow’, sans-serif;
    font-weight: 100;
    font-size: 1.1em;
    color: #ffffff;
  }
  
.loader  span {
    position: relative;
    top: 0.63em;  
    display: inline-block;
    text-transform: uppercase;  
    opacity: 0;
    transform: rotateX(-90deg);
  }
  
.loader .let1 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.2s;
  }
  
.loader .let2 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.3s;
  }
  
.loader .let3 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.4s;
  }
  
.loader .let4 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.5s;
  
  }
  
.loader .let5 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.6s;
  }
  
.loader .let6 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.7s;
  }
  
.loader .let7 {
    animation: drop 1.2s ease-in-out infinite;
    animation-delay: 1.8s;
  }
  
  @keyframes drop {
      10% {
          opacity: 0.5;
      }
      20% {
          opacity: 1;
          top: 3.78em;
          transform: rotateX(-360deg);
      }
      80% {
          opacity: 1;
          top: 3.78em;
          transform: rotateX(-360deg);
      }
      90% {
          opacity: 0.5;
      }
      100% {
          opacity: 0;
          top: 6.94em
      }
}

@font-face {
  font-family: "mogan";
  src: url(../fonts/mogan.ttf);
}
@font-face {
  font-family: "betterlet";
  src: url(../fonts/Betterlett.otf);
}

:root{
    --primary-color: #113a36;
}

.fixed-body{
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url('../images/gallery/background_main.webp');
  background-position: center;
  background-size: cover;
  .form-box{
    backdrop-filter: blur(5px);
    padding: 60px 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 20px;
    border: #ffffffab 2px solid;
    box-shadow: 10px 5px 5px rgba(255, 255, 255, 0.499);
    .title{
      display: flex;
      flex-direction: column;
      gap: 25px;
      align-items: center;
      justify-content: center;
      .logo{
        width: 100px;
        height: 100px;
        background-image: url("../images/logo/logo.png");
        background-position: center;
        background-size: cover;
        border: #ffffff solid 2px;
        border-radius: 50%;
      }
      .text{
        font-size: 1.2rem;
        color: #ffffff;
      }
    }
    .form{
      form{
        display: flex;
        flex-direction: column;
        gap: 20px;
        input{
          width: 250px;
          padding:10px 20px;
          font-size: 1.2rem;
          border-radius: 50px;
          outline: none;
          border: #113b34 solid 2px;
          background: #ffffff;
          color: #113b34;
          &::placeholder{
            color: #9b9b9b;
          }
        }
        button{
          padding: 10px 20px;
          outline: none;
          font-size: 1.2rem;
          border-radius: 50px;
          background: #ffffff;
          border: #113b34 solid 2px;
          color: #113b34;
          &:hover{
            transition: 0.2s all linear;
            background: #113b34;
            border: #ffffff solid 2px;
            color: #ffffff;
          }
        }
      }
    }
    .otp_auth{
      display: flex;
      flex-direction: column;
      gap: 40px;
      form{
        display: flex;
        flex-direction: column;
        gap: 20px;
        input{
          width: 250px;
          padding:10px 20px;
          font-size: 1.2rem;
          border-radius: 50px;
          outline: none;
          border: #113b34 solid 2px;
          background: #ffffff;
          color: #113b34;
          &::placeholder{
            color: #9b9b9b;
          }
        }
        button{
          padding: 10px 20px;
          outline: none;
          font-size: 1.2rem;
          border-radius: 50px;
          background: #ffffff;
          border: #113b34 solid 2px;
          color: #113b34;
          &:hover{
            transition: 0.2s all linear;
            background: #113b34;
            border: #ffffff solid 2px;
            color: #ffffff;
          }
        }
      }
      .bar{
        display: flex;
        justify-content: right;
        font-size: 1.2rem;
        align-items: center;
        a{
          color: white;
          
        }
      }
    }
  }
}