:root {
  --pink:       #FF40A0;
  --pink-light: #FFB7E6;
  --teal:       #60A3A6;
  --bg:         #0A0E27;
  --surface:    #1A203A;
  --border:     rgba(255, 255, 255, 0.08);
  --text-white: #FFFFFC;
  --text-muted: #BDC2C9;
  --text-body:  #C8D0E7;
  --font:       'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-white);
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 60px;
}

.fp-left,
.fp-right {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
}

.fp-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-left-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.fp-accent { color: var(--pink); }

.fp-left-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--text-body);
}

.fp-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fp-step {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-body);
}

.fp-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--pink), var(--pink-light));
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fp-form-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.fp-form-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 36px;
  color: var(--text-body);
}

.fp-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(96, 163, 166, 0.15);
  border: 1px solid rgba(96, 163, 166, 0.3);
  border-radius: 10px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.fp-form-group { margin-bottom: 24px; }

.fp-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.fp-input-wrapper { position: relative; }

.fp-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.fp-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.fp-input::placeholder { color: var(--text-muted); }
.fp-input:focus        { border-color: rgba(255, 64, 160, 0.5); }
.fp-input.error        { border-color: var(--pink); }

.fp-error {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--pink);
}

.fp-btn-send {
  width: 100%;
  padding: 15px;
  background: linear-gradient(to right, var(--pink), var(--pink-light));
  color: var(--text-white);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 64, 160, 0.45);
  transition: opacity 0.2s ease, transform 0.15s ease;
  margin-bottom: 20px;
}

.fp-btn-send:hover    { opacity: 0.88; transform: translateY(-1px); }
.fp-btn-send:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.fp-back-link,
.fp-signup-link { transition: opacity 0.2s ease; }

.fp-back-link:hover,
.fp-signup-link:hover { opacity: 0.75; }

.fp-back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 28px;
}

.fp-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.fp-signup-prompt {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fp-signup-link {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
}

.fp-help-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fp-help-btn:hover {
  border-color: var(--pink);
  color: var(--text-white);
}

@media (max-width: 900px) {
  .fp-grid  { grid-template-columns: 1fr; }
  .fp-left,
  .fp-right { padding: 40px 32px; }
}

@media (max-width: 640px) {
  .main-content  { padding: 24px 20px 60px; }
  .fp-left-title { font-size: 1.8rem; }
  .fp-form-title { font-size: 1.6rem; }
}