/* SlideShip forms — shared styles. Mirrors the plugin's blue brand (#0d99ff). */
:root {
  --brand-from: #0d99ff;
  --brand-to: #0b87e0;
  --text: #1e1e1e;
  --text-dim: #6e6e6e;
  --border: #e6e6e6;
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --green: #14ae5c;
  --red: #f24822;
  --radius: 12px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(13, 153, 255, 0.16), transparent 60%),
    var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 440px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.card-head {
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  color: #fff;
  padding: 22px 24px;
}

.card-head .brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 13px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.card-head .logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.card-head h1 {
  margin: 6px 0 4px;
  font-size: 22px;
  line-height: 1.2;
}

.card-head p {
  margin: 0;
  font-size: 14px;
  opacity: 0.92;
}

form, .card-body {
  padding: 22px 24px 24px;
}

.field { margin-bottom: 16px; }

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

label .opt { font-weight: 400; color: var(--text-dim); }

input, textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--brand-from);
  box-shadow: 0 0 0 3px rgba(13, 153, 255, 0.15);
}

textarea { min-height: 120px; resize: vertical; }

/* Honeypot — hidden from real users, catches naive bots. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button {
  width: 100%;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: filter 0.15s, opacity 0.15s;
}

button:hover { filter: brightness(1.05); }
button:disabled { opacity: 0.6; cursor: default; }

.status {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 1.2em;
}
.status.ok { color: var(--green); }
.status.err { color: var(--red); }

.foot {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding: 0 24px 20px;
}
.foot a { color: var(--brand-from); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

.hidden { display: none !important; }
