.login-form {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.left-section-cas,
.right-section-cas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.left-section-cas {
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 64, 209, 0.82) -11.2%,
      rgba(12, 22, 125, 0.92) 110.92%
    ),
    url("../images/left-section-cas-bg.png");
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.left-section-cas::-webkit-scrollbar {
  display: none;
}

.right-section-cas {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}

/* ============================================================
   LEFT PANEL NEW DESIGN (lp-* classes)
   ============================================================ */

.left-panel-inner {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.5rem 1.5rem;
  box-sizing: border-box;
  color: #fff;
  justify-content: space-between;
}

/* ── Top bar: logo left, Help button right ── */
.lp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.loginform-rise-logo {
  max-width: 130px;
  height: auto;
  display: block;
}

a.lp-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.08);
}

.lp-help-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  text-decoration: none;
}

/* ── Headline section ── */
.lp-headline {
  margin-bottom: 1.5rem;
}

.lp-headline-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.lp-headline-main {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.lp-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 90%;
}

/* ── Feature chips row ── */
.lp-chips {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.lp-chip {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  height: 100%;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.15s;
}

.lp-chip:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.lp-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  margin-right: 12px;
}

/* ── Slider wrapper ── */
.lp-slider-wrapper {
  position: relative;
  background-color: #ffffff;
  color: #000000;
  border-radius: 12px;
  padding: 24px;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Dots above the card */
.lp-dots {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.lp-dot:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.lp-dot--active {
  background-color: #0052ce;
  transform: scale(1.2);
}

/* Slides track */
.lp-slides-track {
  position: relative;
}

/* Each slide */
.lp-slide-item {
  display: none;
}

/* Active slide: show with flex */
.lp-slide-item.lp-slide--active {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: slideFadeIn 0.5s ease-out forwards;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-slide-illustration {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-slide-text {
  flex: 1;
}

.lp-slide-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 8px;
  color: #000000;
}

.lp-slide-desc {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ── Footer ── */
.lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
}

a.lp-footer-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.lp-footer-link:hover {
  color: #fff;
}

.lp-footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   FORM / RIGHT SIDE STYLES
   ============================================================ */
.form-wrapper-outer {
  width: 100%;
  max-width: 450px;
  padding: 2rem;
}

.seepz-login-field {
  position: relative;
}

.seepz-login-field .mdc-text-field__input {
  padding-left: 3rem !important;
}

.seepz-login-field::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  opacity: 0.6;
}

#usernameSection::before {
  background-image: url("../images/username-placeholder.png");
}
#passwordSection::before {
  background-image: url("../images/password-placeholder.png");
}

.mdc-button.mdc-button--raised.btn.btn-primary {
  width: 100% !important;
  max-width: 100%;
  height: auto;
  padding: 1.075rem 1.125rem;
  font-size: 1rem;
  font-weight: 600;
}

.toggle.user-tab {
  display: flex;
  gap: 10px;
  width: 100%;
}

.toggle.user-tab input + label {
  border-radius: 20px !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(86.51deg, #59c173 0%, #0930b1 100%) border-box !important;
  flex: 1;
  text-align: center;
  margin: 0;
}

.toggle.user-tab input:checked + label {
  background: #0052ce !important;
  background-color: #0052ce !important;
  border-color: #0052ce !important;
  color: #fff !important;
  box-shadow: none !important;
}

.toggle.user-tab input + label:first-of-type,
.toggle.user-tab input + label:last-of-type {
  border-radius: 20px !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(86.51deg, #59c173 0%, #0930b1 100%) border-box !important;
}

.toggle.user-tab input:checked + label:first-of-type,
.toggle.user-tab input:checked + label:last-of-type {
  border-color: #0052ce !important;
  background: #0052ce !important;
}

.custom-form-label {
  color: #333333;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  text-align: left;
  font-size: 0.9rem;
}

::placeholder,
.mdc-text-field__input::placeholder,
.mdc-text-field:not(.mdc-text-field--focused)
  .mdc-text-field__input::placeholder {
  color: #bdbdbd !important;
  opacity: 1 !important;
}

:-ms-input-placeholder {
  color: #bdbdbd !important;
  opacity: 1 !important;
}

::-ms-input-placeholder {
  color: #bdbdbd !important;
  opacity: 1 !important;
}

.no-float-label .mdc-notched-outline__notch {
  border-top: 1px solid rgba(0, 0, 0, 0.38) !important;
  padding: 0 !important;
  width: auto !important;
}

.no-float-label .mdc-text-field__input {
  height: auto !important;
  border-radius: 10px !important;
}

.mdc-text-field.no-float-label {
  border-radius: 8px !important;
  box-shadow: 0px 4px 12px -3px #2b8be214 !important;
  outline: 0.6px solid #092eae73 !important;
  background: #fff !important;
}

.no-float-label .mdc-notched-outline__leading,
.no-float-label .mdc-notched-outline__notch,
.no-float-label .mdc-notched-outline__trailing {
  border: none !important;
}

.mdc-text-field.no-float-label.mdc-text-field--focused {
  outline: 2px solid #01458e !important;
}

.seepz-login-field::before {
  top: 65% !important;
}

.seepz-login-field.my-3::before {
  top: calc(50% + 14px) !important;
}

#usernameSection::before,
#passwordSection::before {
  z-index: 20;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1450px) {
  .left-right-section {
    overflow: hidden;
  }
}

@media (max-width: 1199px) {
  .lp-slider-wrapper {
    padding: 24px;
    padding-top: 35px;
  }
  .lp-slide-item.lp-slide--active {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .lp-dots {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 991px) {
  .left-section-cas,
  .right-section-cas {
    min-height: 50vh !important;
    height: auto;
  }
  .left-panel-inner {
    min-height: auto;
    padding: 2rem 1.5rem 1.5rem;
  }
  .lp-topbar {
    margin-bottom: 2rem;
  }
  .lp-headline-main {
    font-size: 1.9rem;
  }
  .lp-chips {
    margin-bottom: 1.5rem;
  }
  .lp-chip {
    font-size: 0.8rem;
    padding: 10px 14px;
  }
  .form-wrapper-outer {
    max-width: 450px;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .lp-headline-main {
    font-size: 1.7rem;
  }
  .lp-chip {
    flex-direction: row;
    justify-content: flex-start;
  }
  .lp-chip-icon {
    margin-right: 12px;
    margin-bottom: 0;
  }
  .form-wrapper-outer {
    max-width: 100%;
    margin: 0 1rem;
    box-shadow: none;
    border: none;
  }
}

@media (max-width: 575px) {
  .left-panel-inner {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .lp-topbar {
    margin-bottom: 1.5rem;
  }
  .loginform-rise-logo {
    max-width: 110px;
  }
  .lp-headline-main {
    font-size: 1.5rem;
  }
  .lp-tagline {
    font-size: 0.875rem;
  }
  .lp-chips {
    gap: 0.5rem;
  }
  .lp-chip {
    padding: 10px 12px;
  }
  .lp-slider-wrapper {
    padding: 20px;
    padding-top: 35px;
  }
  .lp-slide-illustration svg {
    width: 100px;
    height: auto;
  }
  .form-wrapper-outer {
    padding: 1.5rem 1rem !important;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

@media (min-resolution: 1.25dppx) {
  .left-section-cas,
  .right-section-cas {
    min-height: 100vh;
    height: auto;
  }
}

.left-section-cas,
.right-section-cas {
  scroll-behavior: smooth;
}

.left-section-cas > *,
.right-section-cas > * {
  max-width: 100%;
}

@media print {
  .left-section-cas {
    background: #0d2eab;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}


