body.bg-pattern {
  /* background-image: url('../imgs/background-pattern.png'); */
  /* background-size: 100%; */
  /* background-repeat: no-repeat; */
  background: linear-gradient(to bottom, var(--bs-primary) 50%, #fff 50%);
  /* height: 100vh; */
}
.first-half {
  min-height: 30rem;
  height: 30rem;
  background-color: var(--bs-primary);
}

.second-half {
  height: 50vh;
  background-color: var(--bs-white);
}

.login-history-card {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-history-user {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-form {
  box-shadow: 0px 4px 35px 0px rgba(51, 51, 51, 0.08);
  border-radius: 24px;
  width: 85%;
  margin: 0 auto;
}

.single-form-container {
  width: 100%;
  height: calc(100% - 250px);
}
.single-form-container .auth-form {
  max-width: 550px;
  height: 100%;
}

.verify-code-container input {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
  text-align: center;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .verify-code-container input {
    width: 2.4rem;
    height: 3.4rem;
    font-size: 1.2rem;
  }
  .single-form-container {
    height: auto;
    margin-bottom: 30px;
  }

  body.bg-pattern {
    background: linear-gradient(to bottom, var(--bs-primary) 50%, #fff 50%);
    height: auto;
  }
}

@media screen and (max-width: 992px) {
  .first-half {
    height: auto;
  }

  .auth-form {
    width: 100%;
  }
}
