.lp {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Hind Siliguri", sans-serif;
  color: #0f172a;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(79, 70, 229, 0.16), transparent 55%),
    #f3f5fb;
}

.lp-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.lp-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #e7ebf3;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 24px 60px rgba(15, 23, 42, 0.08);
  padding: 40px 36px 32px;
}

.lp-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.lp-logo img {
  height: 52px;
  width: auto;
}

.lp-card h1 {
  margin: 0 0 6px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.lp-lead {
  margin: 0 0 26px;
  text-align: center;
  color: #66758a;
  font-size: 15px;
}

.lp-msg {
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.lp-msg.err {
  background: #fdf4f4;
  color: #8a1f1f;
  border-color: #f0d6d6;
}

.lp-msg.ok {
  background: #f3f8f4;
  color: #1d5c32;
  border-color: #d4e6d9;
}

.lp-field {
  margin-bottom: 16px;
}

.lp-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3a4656;
}

.lp-field input,
.lp-pass input {
  width: 100%;
  height: 46px;
  border: 1px solid #d5dce6;
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
}

.lp-field input:focus,
.lp-pass input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14);
}

.lp-pass {
  position: relative;
}

.lp-pass input {
  padding-right: 44px;
}

.lp-pass button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: #7d8ca0;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.lp-actions {
  display: flex;
  justify-content: flex-end;
  margin: 4px 0 20px;
}

.lp-actions a {
  color: #4f46e5;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.lp-actions a:hover {
  text-decoration: underline;
}

.lp-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: #4f46e5;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(79, 70, 229, 0.28);
}

.lp-submit:hover {
  background: #4338ca;
}

.lp-secure {
  margin: 22px 0 0;
  text-align: center;
  color: #8a96a8;
  font-size: 12px;
}

.lp-secure i {
  margin-right: 6px;
}

@media (max-width: 480px) {
  .lp-card {
    padding: 28px 20px 24px;
    box-shadow: none;
    border: 0;
    background: transparent;
  }
}
