/* =====================================================================
   Circle Private Capital — Inversionistas login / password reset
   ===================================================================== */
body {
  margin: 0;
  background: var(--bg, #17171c);
  color: #ffffff;
  font-family: "Century Gothic", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.investor-area {
  min-height: 100vh;
}

.login-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 64px);
}
.login-page .ring1 {
  position: absolute;
  top: -200px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(153, 123, 59, 0.14);
  border-radius: 50%;
}
.login-page .ring2 {
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(153, 123, 59, 0.09);
  border-radius: 50%;
}

.login-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.login-logo img {
  height: 34px;
}
.login-title {
  font-weight: 500;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.15;
  margin: 12px 0 8px;
}
.login-sub {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.login-card .field {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 15px;
  padding: 13px 15px;
  margin-bottom: 14px;
  transition: 0.2s;
}
.login-card .field:focus {
  outline: none;
  border-color: #997b3b;
}
.login-card .field::placeholder {
  color: rgba(255, 255, 255, 0.34);
}
.login-btn {
  width: 100%;
  background: #997b3b;
  border: 1px solid #997b3b;
  color: #ffffff;
  font-family: "Century Gothic", Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  padding: 14px 18px;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
  display: inline-block;
  margin-top: 6px;
}
.login-btn:hover {
  background: #a88f58;
  border-color: #a88f58;
}
.login-btn:disabled {
  opacity: 0.55;
  cursor: default;
}
.login-error {
  color: #ff4d4d;
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.5;
}
.login-foot {
  margin-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.login-foot a {
  color: #997b3b;
  text-decoration: none;
}
.login-note .kicker {
  letter-spacing: 0.24em;
  font-size: 11px;
  text-transform: uppercase;
  color: #997b3b;
}
.login-note .login-btn {
  margin-top: 18px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}