/* ===== INVESTORS HEADER ===== */
.investors-page {
  --header-bg-rgb: 61, 79, 95;
  background: #fff;
}

/* ===== HERO (same structure logic as contact hero) ===== */
.investors-portal {
  margin-top: -72px;
  padding-top: 72px;
  background: #fff;
}

.investors-hero {
  position: relative;
  width: 100%;
  height: 544px;
  overflow: visible;
  z-index: 2;
}

.investors-hero-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 544px;
  background: #3d4f5f;
  z-index: 1;
}

.investors-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 960px;
  z-index: 2;
  overflow: hidden;
}

.investors-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.investors-hero-title {
  position: absolute;
  top: 200px;
  left: 35%;
  z-index: 10;
}

.investors-hero-title h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

/* ===== LOGIN SECTION ===== */
.investors-login-section {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 48px 0 76px;
}

.investors-login {
  display: flex;
  justify-content: flex-start;
}

.investors-login-card {
  max-width: 420px;
  width: 100%;
  padding: 0;
}

.investors-login-card h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #111827;
}

.investors-login-card p {
  font-size: 15px;
  color: #111827;
}

.investors-form {
  margin-top: 34px;
}

.investors-field {
  margin-bottom: 22px;
}

.investors-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #2a3545;
}

.investors-field input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #cfd7df;
  background: #fbfaf7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.investors-field input:focus {
  border-color: #223049;
  box-shadow: 0 0 0 3px rgba(34, 48, 73, 0.08);
}

.investors-login-btn {
  width: 100%;
  height: 54px;
  margin-top: 6px;
  border: none;
  border-radius: 6px;
  background: #223049;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.investors-login-btn:hover {
  background: #182437;
  transform: translateY(-1px);
}

.investors-login-card .investors-login-error {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.investors-login-card .investors-login-error.is-visible {
  display: block;
}

.investors-note {
  max-width: 360px;
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
}

/* ===== TABLET & MOBILE ===== */
@media (max-width: 1024px) {
  .investors-portal {
    margin-top: -60px;
    padding-top: 60px;
  }

  .investors-hero {
    min-height: 396px;
    height: 396px;
  }

  .investors-hero-blue {
    width: 35%;
    height: 90%;
  }

  .investors-hero-image {
    top: 0;
    left: 35%;
    width: 65%;
    height: 396px;
  }

  .investors-hero-title {
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    max-width: 58%;
  }

  .investors-hero-title h1 {
    font-size: 24px;
    white-space: nowrap;
  }

  .investors-login-section {
    padding: 42px 0 48px;
  }

  .investors-login-card {
    max-width: none;
  }

  .investors-login-card h2 {
    font-size: 40px;
  }
}
