/* ===== BASE ===== */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial;
  background: #f8fafc;
  margin: 0;
}

/* ===== WRAPPER ===== */
.cs_login_wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.cs_login_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.92) 40%,
    rgba(255,255,255,0.6) 65%,
    rgba(255,255,255,0.2) 80%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

.container-fluid {
  position: relative;
  z-index: 2;
}

/* ===== BRAND ===== */
.cs_login_brand {
  padding: 30px;
}

.cs_login_brand img {
  max-width: 200px;
}

/* ===== CARD (FIXED SIZE) ===== */
.cs_login_card {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  max-width: 980px;     /* 🔥 BIGGER CARD */
  margin: auto;
}

/* ===== FORM GRID ===== */
.cs_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}

.cs_input_label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #1f2937;
}

.cs_input_wrapper {
  position: relative;
}

.cs_input_wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.cs_input_wrapper input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
}

.cs_input_wrapper input:focus {
  outline: none;
  border-color: #e11d2a;
}

/* ===== OTP BUTTON ===== */
.cs_verify_btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #e11d2a;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== OTP SECTION ===== */
#otpSection {
  display: none;
  background: #fef2f2;
  padding: 22px;
  border-radius: 14px;
  border: 1px dashed #e11d2a;
  text-align: center;
  margin-bottom: 24px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.otp-box {
  width: 46px;
  height: 52px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
}

/* ===== SUBMIT BUTTON ===== */
.cs_btn_primary {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #e11d2a, #c81e2c);
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.cs_btn_primary:disabled {
  background: #fca5a5;
  cursor: not-allowed;
}

/* ===== MOBILE ===== */
@media(max-width: 991px) {
  .cs_login_brand,
  .cs_login_illustration {
    display: none;
  }

  .cs_login_card {
    padding: 32px;
    max-width: 100%;
  }

  .cs_form_grid {
    grid-template-columns: 1fr;
  }
}