body {
  background-color: #ffffff;
  height: 100vh;
  display: flex;
  align-items: center;
}

.forgot-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forgot-box {
  max-width: 100%;
  padding: 40px;
}

.forgot-title {
  font-weight: 600;
  font-size: 26px;
}

.forgot-subtext {
  color: #6c757d;
  margin-top: 10px;
  margin-bottom: 30px;
}

.form-control {
  border-radius: 6px;
  height: 48px;
}

.btn-primary {
  height: 48px;
  border-radius: 6px;
  padding: 0 24px;
}

.img-illustration {
  /* max-width: 75%;
  height: 75%; */
  max-width: 490px;
  height: 490px;
  /* animation: floatY 3s ease-in-out infinite; */
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* shapes */
.background-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.background-shapes::before,
.background-shapes::after {
  content: "";
  position: absolute;
  background: rgba(0, 123, 255, 0.1);
  /* light blue */
  border-radius: 50%;
  z-index: 0;
}

.background-shapes::before {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
}

.background-shapes::after {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 10%;
}

.background-shapes .triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(0, 123, 255, 0.08);
  top: 60%;
  left: 20%;
  transform: rotate(20deg);
}

/* --- Additional abstract shapes --- */

.background-shapes .shape {
  position: absolute;
  opacity: 0.08;
  z-index: 0;
}

/* Circle */
.shape.circle {
  border-radius: 50%;
  background-color: #007bff;
}

/* Triangle */
.shape.triangle-alt {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 45px solid #007bff;
}

/* Square */
.shape.square {
  background-color: #007bff;
}

/* Dot */
.shape.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #007bff;
}

/* Position variations */
.shape-1 {
  top: 8%;
  left: 5%;
  width: 60px;
  height: 60px;
}

.shape-2 {
  top: 20%;
  left: 80%;
  width: 80px;
  height: 80px;
}

.shape-3 {
  bottom: 10%;
  right: 15%;
  width: 100px;
  height: 100px;
}

.shape-4 {
  bottom: 30%;
  left: 10%;
  width: 50px;
  height: 50px;
}

.shape-5 {
  top: 40%;
  right: 20%;
  width: 15px;
  height: 15px;
}

.shape-6 {
  bottom: 5%;
  left: 50%;
  width: 30px;
  height: 30px;
}

.shape-7 {
  top: 15%;
  left: 60%;
  transform: rotate(25deg);
}

.shape-8 {
  bottom: 25%;
  right: 5%;
  width: 12px;
  height: 12px;
}

/* animation override */
.form-control {
  transition: border-color 0.2s ease-in-out;
}

/* success div */

/* bg elements */
.decor-image {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.top-img {
  top: -300px;
}

.bottom-img {
  bottom: -150px;
}

@media (max-width: 767.98px) {
  .forgot-box {
    text-align: center;
  }
}
