/* [project]/src/app/investor-login/investor-auth.css [app-client] (css) */
.ivp-auth {
  z-index: 100;
  background: radial-gradient(ellipse 90% 70% at 85% 0%, color-mix(in srgb, var(--sh-accent) 10%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 0% 100%, #6d28d929 0%, transparent 55%),
    var(--sh-bg-primary);
  color: var(--sh-text-primary);
  font-family: var(--sh-font-sans, "Inter", system-ui, sans-serif);
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.ivp-card {
  border: 1px solid color-mix(in srgb, var(--sh-border) 60%, transparent);
  background: color-mix(in srgb, var(--sh-bg-card) 70%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  width: 100%;
  max-width: 420px;
  padding: 36px 34px 32px;
}

.ivp-logo {
  width: auto;
  height: 34px;
  margin: 0 auto 22px;
  display: block;
}

.ivp-badge {
  background: color-mix(in srgb, var(--sh-accent) 14%, transparent);
  color: var(--sh-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.ivp-head {
  text-align: center;
  margin-bottom: 26px;
}

.ivp-title {
  font-family: var(--sh-font-serif);
  letter-spacing: -.01em;
  margin: 14px 0 0;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.1;
}

.ivp-sub {
  color: var(--sh-text-secondary);
  max-width: 32ch;
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 1.5;
}

.ivp-form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.ivp-field {
  flex-direction: column;
  gap: 7px;
  display: flex;
}

.ivp-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  font-size: 11px;
  font-weight: 600;
}

.ivp-input {
  border: 1px solid color-mix(in srgb, var(--sh-border) 70%, transparent);
  background: var(--sh-bg-card);
  width: 100%;
  height: 44px;
  color: var(--sh-text-primary);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14.5px;
  transition: border-color .15s;
}

.ivp-input:focus {
  border-color: var(--sh-accent);
  outline: none;
}

.ivp-input::placeholder {
  color: var(--sh-text-muted, var(--sh-text-secondary));
  opacity: .7;
}

.ivp-submit {
  background: var(--sh-accent);
  height: 46px;
  color: var(--sh-accent-text);
  cursor: pointer;
  border: 0;
  border-radius: 11px;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .15s;
}

.ivp-submit:hover:not(:disabled) {
  opacity: .92;
}

.ivp-submit:disabled {
  opacity: .55;
  cursor: default;
}

.ivp-hint {
  text-align: center;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  max-width: 34ch;
  margin: 22px auto 0;
  font-size: 12.5px;
  line-height: 1.5;
}

.ivp-footer {
  text-align: center;
  color: var(--sh-text-muted, var(--sh-text-secondary));
  letter-spacing: .04em;
  margin-top: 24px;
  font-size: 11px;
}

/*# sourceMappingURL=src_app_investor-login_investor-auth_0dcrtae.css.map*/