/* POWRYS Auth (Pro) — login/register pages */

body.landing-pro.lp-auth-page {
  min-height: 100vh;
}

.lp-auth-wrap {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 16px 60px;
}

.lp-auth-card {
  max-width: 520px;
  width: 100%;
  padding: 26px;
  border-radius: 22px;
}

.lp-auth-title {
  color: #fff;
  font-weight: 1000;
  letter-spacing: -0.02em;
  margin: 0;
}

.lp-auth-subtitle {
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

.lp-auth-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 18px 0;
}

.lp-auth-page .form-label {
  color: rgba(255,255,255,0.86);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px;
}

.lp-auth-page .form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.92);
}

.lp-auth-page .form-control::placeholder {
  color: rgba(255,255,255,0.45);
}

.lp-auth-page .form-control:focus {
  border-color: rgba(108,124,255,0.65);
  box-shadow: 0 0 0 4px rgba(108,124,255,0.12);
}

.lp-auth-page .form-check-label {
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-size: 13px;
}

.lp-auth-page a {
  color: rgba(108,124,255,0.95);
  text-decoration: none;
  font-weight: 900;
}

.lp-auth-page a:hover {
  color: #fff;
  text-decoration: underline;
}

.lp-auth-actions {
  display: grid;
  gap: 10px;
}

.lp-auth-note {
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}

.lp-auth-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lp-auth-mini .item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 10px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
}

.lp-auth-mini .item i {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: rgba(108,124,255,0.95);
}

@media (max-width: 520px) {
  .lp-auth-card {
    padding: 22px;
  }
  .lp-auth-mini {
    grid-template-columns: 1fr;
  }
}
