/* Next Gen Eco inspired style */

:root {
  --green: #2ecc71;
  --green-soft: rgba(46, 204, 113, 0.15);
  --bg1: #052431;
  --bg2: #052431;
  --card: rgba(5, 25, 30, 0.65);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.75);
  --line: rgba(255,255,255,0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);

  background:
    linear-gradient(135deg, var(--bg1), var(--bg2)),
    radial-gradient(800px 500px at 20% 0%, rgba(46,204,113,.15), transparent 60%);

  min-height: 100vh;
}

/* layout */

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

.wrap.wide {
  align-items: flex-start;
}

/* glass card */

.card {
  width: min(900px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 40px 100px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* headings */

h1 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

p {
  margin: 0 0 16px;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}

/* form */

label {
  display: block;
  margin: 14px 0;
  font-size: 14px;
  color: var(--muted);
}

input {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  outline: none;
  font-size: 15px;
}

input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,204,113,.25);
}

/* button */

button {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, #2ecc71, #1fa463);
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

/* recaptcha */

.recaptcha {
  margin: 18px 0 8px;
}

/* misc */

.tiny {
  font-size: 12px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* success message */

.success {
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 14px;
  background: var(--green-soft);
  border: 1px solid rgba(46,204,113,.35);
  font-weight: 600;
}

/* logo */

.logo-wrap {
  display: flex;
  margin-bottom: 18px;
}

.logo-wrap img {
  max-width: 300px;
  max-height: 90px;
  margin-bottom: 25px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.5));
}

/* responsive */

@media (max-width: 640px) {
  .card {
    padding: 22px;
  }

  h1 {
    font-size: 24px;
  }
}
