/* 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 label {
  display: block;
  font-size: 13px;
  color: #5b6f6b;
}
.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #e6ece9;
  border-radius: 8px;
  background: #f6fcf8;
}

.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;
  color: #6b7d77;
}
.forgot-link {
  font-size: 13px;
  color: #2b6560;
  text-decoration: none;
}

.forgot-link,.form-check label,.form-check input:hover {
cursor: pointer;
color: var(--brand);
}

a {

  color: #2b6560;
}

a:hover{
  cursor: pointer;
color: var(--brand);
}

.btn-login {
  display: inline-block;
  width: 100%;
  background: var(--wb-primary);
  color: #fff;
  border: 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}
.btn-login:hover {
  background: #154732;
}

.reset-bg{
  background-color: var(--wb-primary);
}

.left-forgot {
  background-color: var(--wb-primary);
  color: #fff;
  padding: 150px 0px !important;
}

.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: 12px;
    font-size: 16px;
    border: 1px solid var(--wb-primary);
    cursor: pointer;
}

@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;
  }
}
