
/* =========================
   LOGO
========================= */

.top-logo {
    /* position: absolute; */
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 30px 0;
}
.innersec {
    padding: 60px;
}
.logo-image {
  height: 60px;
  width: auto;
}

/* =========================
   LOGIN SECTION
========================= */
.login-section {
  min-height: 100vh;
    display: flex;
    justify-content: center;
    /* align-items: stretch; */
    padding: 40px 15px;
    flex-direction: column;
}

/* =========================
   LEFT CONTENT
========================= */
.left-title {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;

}

/* =========================
   RIGHT PANEL
========================= */
.right-panel {
  background: #fff;
  padding: 80px;
  border-left: 4px solid #000;
  border-radius: 0 30px 30px 0;
  /* height: 600px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-title {
  font-size: 50px;
  font-weight: 600;
  padding-bottom: 40px;
}

/* =========================
   INPUT FIELDS
========================= */
.input-group-custom {
  width: 100%;
  background: #f1f1f1;
  padding: 12px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.input-group-custom input {
  border: none;
  background: none;
  outline: none;
  margin-left: 10px;
  width: 100%;
  font-size: 14px;
}

/* =========================
   LOGIN BUTTON
========================= */
.btn-login {
  width: 100%;
  padding: 12px;
  background: #000;
  color: white;
  border-radius: 30px;
  font-size: 15px;
  border: none;
  margin-bottom: 15px;
  cursor: pointer;
}

/* =========================
   OPTIONS
========================= */
.form-options {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-options a {
  color: #3a3a3a;
  font-weight: 500;
  text-decoration: none;
}

.forgot {
  color: #666;
  font-size: 16px;
}

/* =====================================================
   TABLET VIEW (≤ 992px)
===================================================== */
@media (max-width: 992px) {
  .login-section {
    flex-direction: column;
    align-items: center;
  }

  .left-title {
    font-size: 38px;
    padding: 30px;
    text-align: center;
  }

  .right-panel {
    padding: 60px 40px;
    height: auto;
    border-left: none;
    border-radius: 30px;
    width: 100%;
    max-width: 600px;
  }

  .login-title {
    font-size: 36px;
    padding-bottom: 30px;
    text-align: center;
  }
}

/* =====================================================
   MOBILE VIEW (≤ 768px)
===================================================== */
@media (max-width: 768px) {
  .top-logo {
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }

  .logo-image {
    height: 45px;
  }

  .login-section {
    padding: 20px 15px;
  }

  .left-title {
    font-size: 28px;
    padding: 15px;
    line-height: 1.4;
  }

  .right-panel {
    padding: 30px 20px;
    width: 100%;
    border-radius: 20px;
  }

  .login-title {
    font-size: 26px;
    padding-bottom: 20px;
  }

  .input-group-custom {
    padding: 10px 14px;
    margin-bottom: 20px;
  }

  .input-group-custom input {
    font-size: 13px;
  }

  .btn-login {
    font-size: 14px;
    padding: 10px;
  }

  .form-options {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .forgot {
    font-size: 14px;
  }
}

/* =====================================================
   SMALL MOBILE VIEW (≤ 480px)
===================================================== */
@media (max-width: 480px) {
  .left-title {
    font-size: 22px;
  }

  .login-title {
    font-size: 22px;
  }

  .right-panel {
    padding: 25px 15px;
  }
}