/* WRAPPER */
.spprg-wrapper {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* LEFT PANEL */
.spprg-left {
  width: 40%;
  background: #0b2a4a;
  color: #fff;
  padding: 30px;
}

.spprg-left-title {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 10px;
}

.spprg-left-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.spprg-left-img {
  max-width: 100%;
  margin-top: 20px;
}

/* RIGHT PANEL */
.spprg-right {
  width: 60%;
  padding: 30px;
}

/* FORM */
.spprg-label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.spprg-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 12px;
}

.spprg-terms {
  font-size: 12px;
  margin-bottom: 15px;
}

.spprg-terms a {
  color: red;
  text-decoration: none;
}

/* BUTTONS */
.spprg-btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

.spprg-btn.otp {
  background: #0b2a4a;
}

.spprg-btn.password {
  background: red;
}

/* LINKS */
.spprg-forgot {
  text-align: right;
  color: red;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 15px;
}

.spprg-create {
  text-align: center;
  color: #0066cc;
  font-size: 14px;
  cursor: pointer;
}
/* ================= TOP SPACING FIX ================= */

/* Overall wrapper top space control */
.spprg-wrapper {
    margin-top: 20px !important;   /* 👈 yahan adjust kar sakte ho */
}

/* Agar breadcrumb bahut upar chipak raha ho */
body.page-login .spprg-wrapper {
    margin-top: 15px !important;
}

/* 📱 MOBILE RESPONSIVE (ONLY HERE CHANGE) */
@media (max-width: 768px) {
  .spprg-wrapper {
    flex-direction: column;
  }

  .spprg-left,
  .spprg-right {
    width: 100%;
  }

  .spprg-left {
    text-align: center;
  }

  .spprg-left-img {
    max-width: 180px;
    margin: 15px auto 0;
  }
}

@media (max-width: 768px) {
    .spprg-wrapper {
        margin-top: 10px !important;
    }
}