.login-page {
  position: relative;
  height: 90vh;
  margin-top: 45px;
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #F6F6F7;
}

.login-container {
  z-index: 1;
}

.login-background {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 35% 40%, #0077B6 80px, transparent 120px),
    radial-gradient(circle at 45% 50%, #E8853A 100px, transparent 100px);
  filter: blur(120px);
  opacity: 0.72;
  width: 100vw;
  height: 100vh;
}

.login-info {
  display: flex;
  gap: 50px;

  .login-info-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }

  h1 {
    font-weight: 700;
    font-size: 58px;
    letter-spacing: 0;
    color: #000;
    font-family: 'Poppins';
    text-align: left;
  }

  img {
    width: 150px;
    height: 150px;
  }

  p, a {
    text-align: left !important;
    font-weight: 400;
    font-size: 23px;
    letter-spacing: 0;
    font-family: 'Poppins';
    padding-right: 120px;
  }
}

.login-form {
  background: none;

  form {
    text-align: left;
    max-width: 350px;
  }

  label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #2A1E17;
  }

  input {
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    height: 60px;
  }

  input:focus {
    background-color: #fff;
    border: 1px solid #E8853A;
  }

  .toggle-password {
    position: absolute;
    top: 60px;
    right: 15px;
    cursor: pointer;
  }
}

.register-link {
  color:#0077B6;
  margin-top: 8px;
  text-decoration: underline;
}

.register-link:hover,
.forgot-link:hover {
  color: #E8853A;
  text-decoration: underline;
}

.forgot-link {
  color: #2A1E17;
  font-size: 18px;
  text-decoration: underline;
}

.btn-primary {
  background: #E8853A;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
}

.btn-primary:hover, .btn-primary:focus {
  background: #ce670b !important;
  color: #fff !important;
}

@media (max-width: 1199px) {
  .login-page {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .login-page h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    margin-top: 0px;
  }

  .login-background {
    display: none;
  }

  .login-container {
    flex-direction: column !important;
    border-radius: 0;
    box-shadow: none;
  }

  .login-wrapper {
    display: block;
  }

  .login-info, .login-form {
    margin: 0 auto;
  }

  .login-info {
    display: block;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .login-info-content {
    margin-top: 20px;

    p, a {
      text-align: center !important;
      padding-right: 0px;
      font-size: 14px;
      margin: 0;
    }
  }

  .login-form {
    max-width: 58.33%;
    padding-top: 0px !important;

    form {
      max-width: 100%;
    }

    label, .forgot-link {
      font-size: 13px;
      color: #2A1E17;
    }

    input {
      border-radius: 4px;
      height: 44px;
    }

    .toggle-password {
      top: 46px;
    }

    .btn {
      font-size: 18px;
      font-weight: 400;
    }
  }
}

@media (max-width: 767px) {
  .login-form {
    max-width: 100%;
  }
}