@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple-50: #eeedfe;
  --purple-100: #d4d0f8;
  --purple-200: #afa9ec;
  --purple-400: #7f77dd;
  --purple-600: #533ab7;
  --purple-700: #3f2d9e;
  --purple-900: #26215c;
  --text-primary: #1a1a1a;
  --text-secondary: #5f5e5a;
  --text-tertiary: #9a9890;
  --bg-primary: #ffffff;
  --bg-secondary: #f4f3f8;
  --bg-page: #f0eff7;
  --border-light: rgba(0,0,0,0.09);
  --border-mid: rgba(0,0,0,0.14);
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
}

html, body {
  min-height: 100%;
  font-family: "DM Sans", sans-serif;
  color: var(--text-primary);
  background: var(--bg-page);
}

/* ── Page shell ── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px 60px;
}

/* ── Card ── */
.card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 0.5px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(83, 58, 183, 0.1), 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* card top accent bar */
.card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--purple-900), var(--purple-400));
}

.card-body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-900);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  text-align: center;
}

/* ── Heading ── */
.form-heading {
  width: 100%;
  margin-bottom: 24px;
}

.form-heading h1 {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Forgot password ── */
.forgot-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.forgot-row a {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-600);
  text-decoration: none;
  transition: color 0.12s;
}

.forgot-row a:hover {
  color: var(--purple-700);
  text-decoration: underline;
}

.form-heading h1 svg {
  width: 26px;
  height: 26px;
  color: var(--purple-600);
  flex-shrink: 0;
}

.form-heading p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
  margin-left: 2px;
}

/* ── Form ── */
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  position: relative;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-tertiary);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.field-icon svg {
  width: 17px;
  height: 17px;
}

.field input {
  width: 100%;
  height: 52px;
  background: var(--bg-secondary);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0 44px 0 44px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input::-moz-placeholder {
  color: var(--text-tertiary);
}

.field input::placeholder {
  color: var(--text-tertiary);
}

.field input:focus {
  border-color: var(--purple-400);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(127, 119, 221, 0.14);
}

.field input:hover:not(:focus) {
  border-color: var(--border-mid);
}

/* eye toggle for password */
.eye-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.12s;
}

.eye-toggle:hover {
  color: var(--purple-600);
}

.eye-toggle svg {
  width: 17px;
  height: 17px;
}

/* password strength */
.strength-row {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.strength-bar {
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: var(--border-light);
  transition: background 0.3s;
}

.strength-bar.weak {
  background: #e03c3c;
}

.strength-bar.medium {
  background: #f0a500;
}

.strength-bar.strong {
  background: #3aaa35;
}

/* ── Signup button ── */
.signup-btn {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-600));
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(83, 58, 183, 0.32);
}

.signup-btn:hover {
  opacity: 0.92;
  box-shadow: 0 6px 24px rgba(83, 58, 183, 0.4);
}

.signup-btn:active {
  transform: scale(0.98);
}

.signup-btn svg {
  width: 17px;
  height: 17px;
}

/* ── Divider ── */
.divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}

.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--border-light);
}

.divider span {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
  white-space: nowrap;
}

/* ── Login link ── */
.login-row {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.login-row a {
  color: var(--purple-600);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.12s;
}

.login-row a:hover {
  color: var(--purple-700);
  text-decoration: underline;
}

/* ── Terms ── */
.terms {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border-light);
  width: 100%;
}

.terms a {
  color: var(--purple-600);
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (min-width: 480px) {
  .card-body {
    padding: 40px 40px 36px;
  }
}
@media (min-width: 768px) {
  .page {
    padding: 60px 24px;
  }
}/*# sourceMappingURL=signup.css.map */