#login-section {
  height: 100dvh;
  position: relative;
  z-index: 1;
}

#login {
  position: relative;
  padding-top: 25px;
  height: 600px;
  width: 87%;
  display: flex;
  justify-content: center;
  background: linear-gradient(#202020 10%, rgba(255,77,0,0.22)), #262626;
  background: #202020;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.59);
  border-radius: 5px;
  z-index: 1;
  position: relative;
  max-width: 480px;
  font-size: clamp(18px,1vw,20px);
}

@media (max-width: 991px) {
    #login {
        width: 95%;
    }
}


#login-panel > p:first-of-type, #verify-panel > p:first-of-type {
    margin-top: 6%;
    font-size: 1em;
    font-family: Oswald;
    color: rgb(210,210,210);
    margin-bottom: 5px;
    text-shadow: 0px 5px 6px rgba(0,0,0,0.6);
}

#otpMessage {
    font-size: 0.8em;
    font-family: Rubik, sans-serif;
    color: rgb(120,120,120);
    margin-bottom: 12px;
    text-shadow: 0px 4px 5px rgba(0,0,0,0.6);
}

#errorMessage1, #errorMessage2 {
    color: red;
    display: none;
    font-size: 16px;
    margin-bottom: 10px;
}

#errorMessage3 {
    color: red;
    font-size: 16px;
    margin-bottom: 10px;
}

#login hr {
  width: 79%;
  margin-bottom: 4%;
  color: #ff4500;
  opacity: 0.50;
}

#login h1 {
  margin-top: 8%;
  margin-bottom: 0%;
  font-family: 'Oswald';
  letter-spacing: 0px;
}

#login-panel {
    position: absolute;
    width: 100%;
    margin-bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    
}

#verify-panel {
    position: absolute;
    margin-bottom: auto;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    
}

.panel-fadein {
    animation: fadeIn 0.4s forwards;
    
}

.hide-panel {
    
    pointer-events: none;
    z-index: -1;
}

.login-input {
  width: 80%;
  position: relative;
  margin-bottom: 25px;
}


.login-input p {
  color: rgb(142,142,142);
  margin-bottom: 0;
}

.login-input input {
  width: 100%;
  border-radius: 7px;
  height: 55px;
  padding: 2px 10px;
  letter-spacing: 0px;
  border: 1px solid #808080;
  font-size: 0.9em;
  padding-inline-start: 10px;
  box-shadow: 0px 3px 10px #0000006e;
}

.login-input input:focus {
  animation: glow 1100ms ease infinite alternate;
  border-color: #996a33;
  color: #efe;
  outline: none;
  box-shadow: 0px 3px 10px #0000006e;
}

#login-button, #verify-button {
  width: 80%;
  background: #ff6626;
  border-style: none;
  color: #000000;
  transition: 0.2s;
  box-shadow: 0px 7px 15px rgba(0,0,0,0.47);
  border-radius: 0;
  font-size: 1.1em;
  letter-spacing: 0px;
  height: 7vh;
  max-height: 50px;
}

#login-button:hover, #verify-button:hover {
  background-color: #b10b00;
  color: white;
}



.getback-button {
  background: rgba(255,102,38,0);
  border-style: none;
  font-family: Oswald, sans-serif;
  color: #ffffff;
  transition: 0.2s;
  font-size: 1.2em;
  margin-bottom: 20px;
  margin-top: auto;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* FLAGS STYLE */

.selected-option {
  position: relative;
  margin-inline-end: 10px;
  width: 23%;
  border-radius: .5rem;
  overflow: hidden;
  cursor: pointer;
  padding-top: 2%;
  border-width: 1px;
  border-style: solid;
  border-color: #808080;
  transition: 0.1s;
  box-shadow: 0px 3px 10px #0000006e;
}

.selected-option strong {
  color: #ffffff;
  font-weight: 100;
  font-size: 0.8em;
}

.selected-option:hover {
  transform: translateY(-2px);
}

.login-input .options {
  position: absolute;
  top: 4.5rem;
  width: 100%;
  background-color: #d9d9d9;
  color: #000000;
  border-radius: .5rem;
  display: none;
}

.login-input .options.active {
  display: block;
}

.login-input .options::before {
  position: absolute;
  content: "";
  left: 30px;
  top: -1.2rem;
  width: 0;
  height: 0;
  border: .6rem solid transparent;
  border-bottom-color: #fff;
}

input.search-box {
  background-color: #000000;
  color: #fff;
  border-radius: .5rem .5rem 0 0;
  padding: 1.4rem 1rem;
}

.login-input ol {
  list-style: none;
  max-height: 30vh;
  overflow: overlay;
  font-size: 0.9em;
}

.login-input ol::-webkit-scrollbar {
  width: 0.6rem;
}

.login-input ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ff6626;
  border-radius: .4rem;
}

.login-input ol li {
  margin-inline-start: -8%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.login-input ol li.hide {
  display: none;
}

.login-input ol li:not(:last-child) {
  border-bottom: .1rem solid #eee;
}

.login-input ol li:hover {
  background-color: rgba(255,129,38,0.46);
}

.login-input ol li .country-name {
  margin-left: 0.4rem;
}

/* OTP SECTION */

.ap-otp-input {
  border: 1px solid rgb(101,101,101);
  border-radius: 10px;
  width: 14.5%;
  aspect-ratio: 0.8;
  /*height: 80px;*/
  margin: 0 3.6% 6% 3.6%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.51);
}

    .ap-otp-input::placeholder {
        opacity: 0.2;
    }

.ap-otp-input:focus {
  outline: none !important;
  border: 3px solid #ff6626;
  transition: 0.12s ease-in;
}

@media (max-width: 991px) {
    .login-input {
        width: 90%;
    }

    #login-button, #verify-button {
        width: 90%;
    }

    .ap-otp-input {
        width: 17%;
    }
}

/* ANIMATION AREA */

.area {
  width: 100%;
  height: 100vh;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  filter: blur(7px);
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: #ff6626;
  animation: animate 25s linear infinite;
  bottom: -20%;
  box-shadow: 0px 0px 50px 10px #ff6626;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-950px) rotate(720deg);
    opacity: 0;
  }
}


