.login-banner-section {
  min-height: 100vh;
  height: 100%;
  position: relative;
  overflow-x: hidden;
  display: block;
  align-content: center;
  padding: 20px 0px;
}
.login-Bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.login-Bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.login-banner-section .container {
  position: relative;
  z-index: 2;
}

/* ===== CARD ===== */
.syn-card {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  min-height: 26rem;
  border-radius: 1.25rem;
  overflow: visible;
  backdrop-filter: blur(7px);
  padding: 1.875rem;
  background-color: var(--light-white-color);
}

.topab-img {
  position: absolute;
  top: -3%;
  left: 26%;
  width: 50%;
  height: auto;
  z-index: 0;
}
.bottomab-img {
  position: absolute;
  bottom: -3%;
  left: 26%;
  width: 50%;
  height: auto;
  z-index: 0;
}
/* ===== LEFT PANEL ===== */
.syn-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 3rem 2rem 0;
  position: relative;
}

.syn-left__brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 3rem;
}

.syn-left__title {
  font-size: 2.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--white-color);
}

.syn-left__title span {
  font-weight: 300;
  font-size: 1.875rem;
  color: var(--light-color);
}

.syn-left__desc {
  font-size: var(--common-font-size);
  color: var(--white-color);
  line-height: 1.55;
  font-weight: 400;
  font-family: var(--font-para);
}
.login-left-img-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-left-img-box img {
  height: 100%;
  object-fit: contain;
  -webkit-animation: mover 0.91s infinite alternate;
  animation: mover 0.91s infinite alternate;
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.syn-left__copy {
  font-size: var(--common-font-size);
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1%;
  text-align: center;
  margin-bottom: 0;
}

/* ===== RIGHT PANEL ===== */
.syn-right {
  flex: 1;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 2.5rem;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.syn-right:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 30%;
  background: #5c45d7;
  filter: blur(100px);
  z-index: 1;
  right: 30%;
  opacity: 0.4;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.form-texture {
  position: absolute;
  right: -54%;
  width: 100%;
  height: 100%;
  top: 6%;
  z-index: 1;
  opacity: 0.9;
}

/* ===== LOGO ===== */
.syn-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
.syn-logo img {
  width: 165px;
}

/* ===== FORM SUBTITLE ===== */
.syn-form__subtitle {
  font-size: var(--common-font-size);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.563rem;
  text-align: center;
}

/* ===== FORM ===== */
.syn-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  padding: 0rem 2.5rem;
}

/* ===== INPUT GROUP ===== */
.syn-input-group {
  position: relative;
  width: 100%;
}

.syn-input-group__icon {
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  --common-svg-box-size: 1.763rem;
  width: var(--common-svg-box-size);
  height: var(--common-svg-box-size);
  background-color: #edeaff;
  border-radius: 3px;
}
.syn-input-group__icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
.syn-input-group__field {
  width: 100%;
  padding: 0.313rem 2.3rem 0.313rem 2.5rem;
  border: 1px solid var(--topbar-border);
  border-radius: var(--radius-sm-too);
  background: var(--white-color);
  font-size: var(--common-font-size);
  color: var(--primary-color);
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  min-height: 2.5rem;
}

.syn-input-group__field::placeholder {
  color: var(--placeholder-color);
}

.syn-input-group__field:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.18rem rgba(124, 58, 237, 0.12);
}

/* eye icon */
.syn-input-group__eye {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--gray-color);
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  border: 0;
  outline: 0;
}

.syn-input-group__eye i {
  font-size: 1rem;
}

/* ===== REMEMBER / FORGOT ROW ===== */
.syn-form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.syn-checkbox-label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--common-font-size);
  color: var(--primary-color);
  user-select: none;
  font-family: var(--font-para);
}

.syn-checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--secondary-color);
  border-radius: 2px;
  background: var(--white-color);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.syn-checkbox-label input[type="checkbox"]:checked {
  background: var(--syn-check-color);
  border-color: var(--secondary-color);
}

.syn-checkbox-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.075rem;
  width: 0.35rem;
  height: 0.55rem;
  border: 0.12rem solid var(--secondary-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.syn-forgot {
  font-family: var(--font-para);
  font-size: var(--common-font-size);
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.syn-forgot:hover {
  opacity: 0.75;
}

/* ===== LOGIN BUTTON ===== */
.syn-btn-login {
  min-height: 2.8rem;
  margin-top: 0.2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1440px) {
  .syn-left__title {
    font-size: 2rem;
  }
  .syn-left__title span {
    font-size: 1.5rem;
  }
  .login-left-img-box {
    width: 65%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .syn-card {
    flex-direction: column-reverse;
    max-width: 36rem;
    margin: 0 auto;
  }
  .login-left-img-box {
    display: none;
  }
  .syn-left {
    padding: 1rem;
  }
  .syn-left__brand {
    padding-left: 0;
    padding-bottom: 2rem;
  }
  .line:nth-child(2),
  .line:nth-child(4),
  .line:nth-child(6),
  .line:nth-child(8) {
    display: none;
  }
  .syn-left__title {
    font-size: 1.8rem;
  }
  .syn-left__title span {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .login-banner-section {
    padding: 50px 0px;
  }
  .syn-left {
    padding: 2rem 0rem;
    padding-bottom: 0;
  }
  .syn-input-group__icon svg {
    width: 0.79rem;
    height: 0.79rem;
  }
  .syn-logo {
    margin-bottom: 1rem;
  }
  .syn-logo img {
    width: 130px;
  }
  .syn-right {
    padding: 2rem 1.8rem 2.5rem;
  }
  .syn-checkbox-label input[type="checkbox"]:checked::after {
    left: 0.28rem;
    top: 0.18rem;
    width: 0.25rem;
    height: 0.45rem;
  }
  .syn-form {
    padding: 0rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .syn-card {
    max-width: 30rem;
  }
  .line:nth-child(3),
  .line:nth-child(7) {
    display: none;
  }
  .login-Bg img {
    object-position: 100% 50%;
  }
  .syn-form {
    padding: 0rem 0rem;
  }
  .topab-img {
    top: -2%;
    left: 6%;
    width: 90%;
  }
  .bottomab-img {
    bottom: -2%;
    left: 6%;
    width: 90%;
  }
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100vw;
  z-index: 2;
}

.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* animated drop */
.line::after {
  content: "";
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #ffae00 75%,
    #ff0000 100%
  );
  animation: drop 7s linear infinite;
}

/* distribute all 9 lines evenly */
.line:nth-child(1) {
  margin-left: -40%;
}
.line:nth-child(2) {
  margin-left: -30%;
}
.line:nth-child(3) {
  margin-left: -20%;
}
.line:nth-child(4) {
  margin-left: -10%;
}
.line:nth-child(5) {
  margin-left: 0%;
}
.line:nth-child(6) {
  margin-left: 10%;
}
.line:nth-child(7) {
  margin-left: 20%;
}
.line:nth-child(8) {
  margin-left: 30%;
}
.line:nth-child(9) {
  margin-left: 40%;
}

/* stagger animation delay */
.line:nth-child(1)::after {
  animation-delay: 0s;
}
.line:nth-child(2)::after {
  animation-delay: 0.5s;
}
.line:nth-child(3)::after {
  animation-delay: 1s;
}
.line:nth-child(4)::after {
  animation-delay: 1.5s;
}
.line:nth-child(5)::after {
  animation-delay: 2s;
}
.line:nth-child(6)::after {
  animation-delay: 2.5s;
}
.line:nth-child(7)::after {
  animation-delay: 3s;
}
.line:nth-child(8)::after {
  animation-delay: 3.5s;
}
.line:nth-child(9)::after {
  animation-delay: 4s;
}

/* animation */
@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
