@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --white: #ffffff;
  --off-white: #f5f5f5;
  --black: #000;
  --footer-color: #f5f5f5;
  --blue-2: #223448;
  --text-color: rgba(233, 224, 207, 1);
  --ash: #7c7c7c;
}
body {
  font-family: "Inter", sans-serif;
}
.bg-side {
  background-size: cover;
  background-position: center center;
  position: relative;
  min-height: 1024px;
  color: var(--text-color);
  border-top-left-radius: 15px;
}
.bg-side h2 {
  position: absolute;
  top: 10%;
  left: 75%;
  font-size: 33.26px;
}
.bg-side p {
  position: absolute;
  bottom: 10%;
  text-align: center;
  z-index: 9999;
  width: 100%;
  text-align: right;
  padding-right: 2rem;
  font-size: 22px;
  font-weight: 300;
}
.backdrop {
  position: absolute;
  height: 336px;
  width: 100%;
  bottom: 0%;
}
.forget-password {
  text-align: right;
  margin-top: 0.5rem;
}
.forget-password,
.sign-up {
  color: rgba(51, 141, 41, 1);
}
@media (max-width: 1105px) {
  .bg-side h2 {
    left: 80%;
    transform: translateX(-50%);
    text-align: center;
  }
}
@media (max-width: 1078px) {
  .login-container {
    grid-template-columns: 1fr;
  }
  .bg-side {
    display: none;
  }
  .login-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 870px) {
  .bg-side h2 {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 28px;
  }
  .bg-side p {
    font-size: 18px;
    padding-right: 1rem;
  }
  .login-info {
    padding: 3rem;
  }
}
@media (max-width: 630px) {
  .login-info {
    padding: 1.5em;
    height: 100vh;
  }
  .login-info h2 {
    font-size: 30px;
  }
}
@media (max-width: 530px) {
  .login-info h2 {
    text-align: center;
    padding-bottom: 2rem;
  }
  .login-info a {
    font-size: 14px;
  }
  .login-info p {
    font-size: 16px;
  }
}
@media (max-width: 381px) {
  .login-info a {
    font-size: 12px;
  }
}
