:root {
  --bg: #090909;
  --panel: #121212;
  --panel-line: #2b2b2b;
  --text: #f2f2f2;
  --muted: #b8b8b8;
  --brand: #e43b34;
  --brand-hover: #c92f29;
  --ok-bg: rgba(37, 211, 102, 0.1);
  --ok-line: rgba(37, 211, 102, 0.48);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(228, 59, 52, 0.2) 0%, rgba(228, 59, 52, 0) 34%),
    radial-gradient(circle at 87% 90%, rgba(201, 47, 41, 0.2) 0%, rgba(201, 47, 41, 0) 36%),
    var(--bg);
}

.lp-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 18px;
}

.lp-panel {
  width: min(1080px, 100%);
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  padding: 30px 30px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lp-layout {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 440px);
  gap: 26px;
  align-items: start;
}

.lp-left {
  padding: 8px 4px 0;
}

.lp-right {
  border: 1px solid var(--panel-line);
  border-radius: 14px;
  background: #101010;
  padding: 16px;
}

.lp-eyebrow {
  margin: 0 0 10px;
  color: #ff9e9a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  line-height: 1.15;
  font-size: clamp(28px, 4.2vw, 40px);
}

.lp-subtitle {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.lp-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.lp-points li {
  color: #d2d2d2;
  font-size: 15px;
  line-height: 1.45;
  padding-left: 26px;
  position: relative;
}

.lp-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff6a63 0%, var(--brand) 100%);
  box-shadow: 0 0 0 3px rgba(228, 59, 52, 0.2);
}

.lp-form {
  display: grid;
  gap: 12px;
}

.lp-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.lp-select-field {
  display: block;
}

.lp-select-wrap {
  position: relative;
  display: block;
}

.lp-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
}

.lp-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #9b9b9b;
  border-bottom: 2px solid #9b9b9b;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.lp-select-placeholder {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #9f9f9f;
  font-size: 15px;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.lp-select-wrap.has-value .lp-select-placeholder {
  opacity: 0;
}

.lp-form input,
.lp-form select {
  width: 100%;
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  background: #0c0c0c;
  color: var(--text);
  font-size: 15px;
  padding: 12px 13px;
}

.lp-form input:focus,
.lp-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(228, 59, 52, 0.25);
}

.lp-submit {
  width: 100%;
  border: 0;
  border-radius: 11px;
  margin-top: 2px;
  padding: 14px 16px;
  background: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lp-submit:hover {
  background: var(--brand-hover);
}

.lp-submit:disabled {
  opacity: 0.72;
  cursor: default;
}

.lp-form-error {
  min-height: 18px;
  margin: 0;
  color: #ff9a9a;
  font-size: 12px;
}

.lp-success {
  margin-top: 12px;
  border: 1px solid var(--ok-line);
  border-radius: 10px;
  padding: 14px;
  background: var(--ok-bg);
}

.lp-success h2 {
  margin: 0 0 5px;
  color: #7bf0aa;
  font-size: 18px;
}

.lp-success p {
  margin: 0;
  color: #d7d7d7;
  font-size: 14px;
}

.lp-success p + p {
  margin-top: 6px;
}

.lp-login-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.lp-login-link:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .lp-shell {
    padding: 12px;
  }

  .lp-panel {
    padding: 20px 14px 18px;
    border-radius: 14px;
  }

  .lp-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-left {
    padding: 2px 2px 0;
  }

  .lp-right {
    padding: 14px;
    border-radius: 12px;
  }

  .lp-subtitle {
    font-size: 14px;
  }

  .lp-points li {
    font-size: 14px;
  }
}
