/* Login page specific styles to match provided design */

.signin-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.signin-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 64px 0;
}
.promo-panel {
  position: relative;
  overflow: visible;
  padding: 28px 36px;
}
.promo-bg-shape {
  display: none;
}
.promo-inner {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  justify-content: center;
}
.promo-art {
  display: block;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 0;
  margin: 0;
  max-width: 720px;
}
.promo-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* small floating callout box that sits on top-left of image */
.callouts {
  position: absolute;
  z-index: 3;
  left: 64px;
  top: 48px;
}
.callout {
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  width: 220px;
}
.callout.top {
  margin-bottom: 12px;
}
.callout.bottom {
  display: none;
}
.callout-icon {
  width: 18px;
  height: 18px;
  background: #e9f6ee;
  border-radius: 6px;
  float: left;
  margin-right: 8px;
}
.callout p {
  font-size: 13px;
  color: #2f4b44;
  margin: 0;
  padding-left: 26px;
}

.login-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card .card-inner {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.card-title {
  font-size: 28px;
  color: #08384a;
  margin: 0 0 18px 0;
  text-align: left;
}

.login-form .form-row {
  margin-bottom: 12px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #e6ece9;
  border-radius: 8px;
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
}
.login-form input[type="email"]::placeholder,
.login-form input[type="password"]::placeholder{
  color: rgba(98, 116, 142, 1) !important;
}
.Remember-content input,
.Remember-content label {
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.remember {
  font-size: 13px;
}
.forgot-link {
  font-size: 13px;
}



.reset-bg {
  background-color: var(--wb-primary);
}

.reset-img-bg {
  background: rgba(255, 255, 255, 0.09);
  padding: 15px;
  border-radius: 9px;
}

.left-forgot {
  background-color: #22336d;
  color: #fff;
  padding: 150px 0px !important;
}

.left-forgot h1{
  font-size: 20px !important;
}

.right-forgot {
  background: var(--color-primary-dark);
  color: white !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.text-green {
  color: var(--wb-primary);
}

.btn-reset {
  display: inline-block;
  width: 100%;
  background: transparent;
  color: var(--wb-primary);
  border: none;
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 16px;
  border: 1px solid white;
  cursor: pointer;
}
.btn-reset:hover {
  display: inline-block;
  width: 100%;
  background: white;
  color: var(--color-primary-dark) !important;
  border: 1px solid white;
  cursor: pointer;
}
.btn-close{
  filter: invert(1) grayscale(100%) brightness(200%) !important;
}
@media (max-width: 991px) {
  .modal-dialog {
    max-width: 600px;
  }
}

@media (max-width: 769px) {
  .modal-dialog {
    max-width: 500px;
  }

  .left-forgot {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .signin-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }
  .promo-bg-shape {
    display: none;
  }
  .callouts {
    position: static;
    left: auto;
    top: auto;
  }
  .promo-art {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
  }
  .callout {
    position: relative;
    margin: 12px auto;
  }
}
