*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{

    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(font1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}
.wrapper1{
    width: 400px;
    background: transparent;
    border:2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 20px 20px;
    margin-top: 50px;
    margin-left: 5px;
    margin-right: 10px;
    text-align: center;
    box-sizing: border-box;
    position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}

.wrapper1 h1{
    font-size: 36px;
    text-align: center;
}
.wrapper1 .input-box{
    width: 100%;
    height: 60px;
    position: relative;
    margin-top: 20px;
}
.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-left-radius: 0px;border-bottom-left-radius: 0px;
    font-size: 16px;
    color: #fff;
    padding: 20px 40px 20px 20px;
}



.input-box input::placeholder{
    color: #fff;

}
.wrapper1 .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: 15px 5px 15px;
}
.remember-forgot label input{
accent-color: #fff;
margin-right: 3px;
}
.remember-forgot a {
    color: #fff;
    text-decoration: none;
}
.remember-forgot a:hover{
    text-decoration: none;
    color: black;
}
.wrapper1 .btn{
    width: 100%;
    height: 45px;
    background: #fdfd02;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    color: #333;
    font-weight: 700;
}
.wrapper1 .register-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;

}
.register-link p a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.register-link p a:hover{
    text-decoration: none;
    color: black;
}


  @media (max-width: 575.98px) {
    .wrapper1{
        width: 95%;
        margin-left: 5px;
        position: relative;
        left: 5px;
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 767.98px) {
    .wrapper1{
        width: 95%;
        margin-left: 5px;
        position: relative;
        left: 5px;
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 991.98px) {
    .wrapper1{
        width: 95%;
        margin-left: 5px;
        position: relative;
        left: 5px;
        transform: translateX(0) translateY(0);
    }
}



.loader {
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    perspective: 800px;
  }

  .inner {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }

  .inner.one {
    left: 0%;
    top: 0%;
    animation: rotate-one 1s linear infinite;
    border-bottom: 8px solid #f9e315;
  }

  .inner.two {
    right: 0%;
    top: 0%;
    animation: rotate-two 1s linear infinite;
    border-right: 8px solid #f9e315;
  }

  .inner.three {
    right: 0%;
    bottom: 0%;
    animation: rotate-three 1s linear infinite;
    border-top: 8px solid #f9e315;
  }

  @keyframes rotate-one {
    0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    }
  }

  @keyframes rotate-two {
    0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    }
  }

  @keyframes rotate-three {
    0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    }
    100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    }
  }
  #loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color : #00000094;
    z-index: 99;
    text-align: center;
    }
  #loading-image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
    }
