.reset-container {
  height: 100vh;
  display: flex;
}

.card.card-reset-form {
  max-width: 880px;
}

.card.card-email-reset {
  max-width: 688px;
  padding: 48px !important;
}

.card.card-email-reset .card-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto;
}

.rounded-2xl {
  border-radius: 2rem;
}
.container-info {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  overflow: hidden;
}
.content {
  width: 67%;
}
.input-wrapper {
  display: flex;
  align-items: flex-start;
}
.input-title {
  min-width: 280px;
}
.input-col {
  flex-grow: 1;
  width: auto;
}
.image-container {
  width: 33%;
  position: relative;
}
.capsule-div {
  position: absolute;
  top: 20px;
  left: 22%;
  background-color: #fef3c7;
  width: 125%;
  height: 190px;
  border-radius: 100px;
  padding-left: 10%;
  padding-right: 50%;
  display: flex;
  justify-content: center;
}
.text-navi {
  color: #364a63;
}
.criterias {
  margin-top: 24px;
  margin-bottom: 24px;
  display: inline-block;
  width: 49%;
  padding-right: 12px;
  vertical-align: top;
}
.outer-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f6f8fa;
}
.outer-icon.success {
  background-color: #f0fdfa;
}
.outer-icon.warning {
  background-color: #fffbeb;
}
.outer-icon.error {
  background-color: #fef2f2;
}
.color-success {
  color: #0d967b;
}
.color-warning {
  color: #f59e0b;
}
.color-error {
  color: #dc2626;
}
.color-default {
  color: #6f7e92;
}
.has-error {
  border: 1px solid #dc2626;
}

/* Media query for screens smaller than 420px */
@media screen and (max-width: 860px) {
  .container-info {
    flex-direction: column; /* Stack the divs vertically */
    gap: 10px;
  }
  .content,
  .image-container {
    width: 100%;
  }
  .image-container {
    min-height: 120px;
  }
  .input-wrapper,
  .input-title {
    display: block;
  }
  .input-title {
    margin-bottom: 6px;
    min-width: auto;
  }
  .input-title,
  .input-col {
    width: 100%;
  }
  .capsule-div {
    top: -35px;
    left: 50%;
    justify-content: flex-start;
    width: 80%;
    padding-left: 10%;
    padding-right: 30%;
  }
  .criterias {
    display: block;
    width: 100%;
  }
}
