
     /* ==============================
   Login / Signup Card
================================ */
.log-in-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  max-width: 520px;
  margin: auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ==============================
   Title
================================ */
.log-in-title h3 {
  font-weight: 700;
  color: #222222;
  margin-bottom: 6px;
}

.log-in-title span {
  color: #0da487;
}

.log-in-title p,
.log-in-title h4 {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0;
}

/* ==============================
   Inputs & Selects
================================ */
.form-control,
.form-select,
textarea {
  border-radius: 10px;
  border: 1px solid #dddddd;
  font-size: 14px;
  padding: 12px 14px;
}

/* Floating label fix */
.form-floating > label {
  font-size: 13px;
  color: #777;
}

/* Focus state */
.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #0da487;
  box-shadow: 0 0 0 0.15rem rgba(13, 164, 135, 0.25);
}

/* Textarea */
textarea {
  min-height: 90px;
  resize: none;
}

/* ==============================
   Checkbox
================================ */
.remember-box label {
  font-size: 14px;
  color: #555;
}

.remember-box span {
  color: #0da487;
  font-weight: 500;
}

/* ==============================
   Primary Button
================================ */
.btn-login {
  background: linear-gradient(135deg, #0da487, #13c1a3);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: linear-gradient(135deg, #0b8f76, #0da487);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-login:active {
  transform: translateY(0);
}

/* ==============================
   Links
================================ */
.sign-link {
  color: #0da487;
  font-weight: 600;
  font-size: 14px;
}

.sign-link:hover {
  text-decoration: underline;
}

/* Forgot password */
.forgot-password {
  font-size: 14px;
  color: #0da487;
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* ==============================
   Image Section
================================ */
.image-contain img {
  max-width: 85%;
}

/* ==============================
   Responsive Tweaks
================================ */
@media (max-width: 576px) {
  .log-in-box {
    padding: 30px 20px;
  }
}

.remember-box {
  position: relative;
  padding-left: 26px;          /* space for checkbox */
  font-size: 14px;
  line-height: 1.5;
}

.remember-box input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 4px;                    /* aligns with first text line */
  width: 16px;
  height: 16px;
}

.remember-box label {
  margin: 0;
  cursor: pointer;
}
/* TERMS MODAL FIX */
.terms-body {
    max-height: 65vh;
    overflow-y: auto;
    padding: 20px 24px;
}

.terms-body p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 14.5px;
    color: #444;
}
