.forgot-password-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 82px);
  background-color: #181c18;
  border: 1px solid #181c18;
}

.forgot-password-page .page-container-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.forgot-password-page .page_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  max-width: 380px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.forgot-password-page .login-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 24px;
}

.forgot-password-page .login-box .icon img {
  width: 100%;
  max-width: 85px;
}

.forgot-password-page .login-box h2 {
  font-size: 20px;
  color: #fff;
  text-align: center;
  max-width: 320px;
  margin: 0px auto 36px;
}

.forgot-password-page .login-box label {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
  color: #b4b4b4;
  font-weight: 400;
}

.forgot-password-page .login-box input {
  width: 100%;
  padding: 6px;
  margin-bottom: 0;
  background: #32323b;
  border: none;
  border-radius: 5px;
  color: #fff;
}

.forgot-password-page .login-box input:focus {
  outline: 1px solid #2b7cff;
  background-color: #32323b !important;
}

.forgot-password-page .login-box button {
  width: 100%;
  padding: 10px;
  margin-top: 18px;
  background: #2b7cff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.forgot-password-page .login-box button:hover {
  background: #1f66d1;
}

.forgot-password-page .login-box .forgot {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #fff;
  opacity: 77%;
  text-decoration: none;
  font-weight: 300;
}

.forgot-password-page .box {
  padding: 10px 0px;
}

.forgot-password-page .login-box .textBox {
  margin-top: 30px;
}

.forgot-password-page .login-box .info-text {
  margin-top: 20px;
  font-size: 13px;
  color: #b4b4b4;
  opacity: 77%;
  text-align: center;
}

.forgot-password-page .login-box .form-group span {
  font-size: 10px;
  font-weight: 400;
  line-height: 147%;
  color: #B4B4B4;
  opacity: 77%;
  margin-left: 5px;
}

@media (max-width: 768px) {

  .forgot-password-page {
    margin: 5px 6px 8px;
    padding: 10px 0px;
    padding-top: 60px;
    align-items: flex-start;
    border-radius: 5px;
    background-color: #181c18;
    border: 1px solid #181c18;
    overflow-y: auto;
    scrollbar-width: none;
    min-height: calc(100vh - 60px - 50px - 8px - 4px);
    max-height: calc(100vh - 60px - 50px - 8px - 4px);
  }

  .forgot-password-page .page-container-fluid {
    padding: 0 28px;
  }

  .forgot-password-page .login-box .icon {
    margin-bottom: 20px;
  }

  .forgot-password-page .login-box .icon img {
    max-width: 60px;
  }

  .forgot-password-page .login-box h2 {
    font-size: 18px;
    margin: 0px auto 50px;
  }

  .forgot-password-page .login-box label {
    font-size: 11px;
  }

  .forgot-password-page .login-box input {
    font-size: 12px;
  }

  .forgot-password-page .login-box button {
    margin-top: 45px;
  }

  .forgot-password-page .login-box .info-text {
    font-size: 9px;
    max-width: 321px;
  }

}

@media (max-width: 768px) and (min-width: 581px) {

  .forgot-password-page .login-box button {
    margin-top: 35px;
  }

  .forgot-password-page .login-box h2 {
    margin-bottom: 30px;
  }

}