:root {
  --jf-blue: #2b5f8f;
  --jf-teal: #4db8ac;
  --jf-orange: #f89b4d;
  --jf-ink: #13263a;
  --jf-muted: #668199;
  --jf-soft: #edf8fb;
  --jf-line: #cfe7ee;
  --jf-white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background: #f3fafc;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--jf-ink);
  background:
    linear-gradient(135deg, rgba(43, 95, 143, 0.08), rgba(77, 184, 172, 0.13) 52%, rgba(248, 155, 77, 0.10)),
    var(--jf-soft);
}

.page {
  width: min(100%, 520px);
}

.card {
  width: 100%;
  padding: 44px 36px 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--jf-line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(19, 38, 58, 0.10);
  animation: fade-up 0.65s ease both;
}

.logo-mark {
  width: 72px;
  height: 72px;
  display: block;
  margin: 0 auto 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(43, 95, 143, 0.18);
}

.brand {
  margin-bottom: 6px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-jobs {
  color: var(--jf-blue);
}

.brand-fl {
  color: var(--jf-teal);
}

.brand-ow {
  color: var(--jf-orange);
}

.domain {
  margin-bottom: 28px;
  color: #8aa4b8;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.divider {
  width: 44px;
  height: 3px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jf-blue), var(--jf-teal), var(--jf-orange));
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(77, 184, 172, 0.35);
  border-radius: 999px;
  color: #2f827a;
  background: rgba(77, 184, 172, 0.10);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 420px;
  margin: 0 auto 14px;
  color: var(--jf-ink);
  font-size: 30px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.tagline {
  max-width: 410px;
  margin: 0 auto 26px;
  color: var(--jf-muted);
  font-size: 16px;
  line-height: 1.65;
}

.input-wrap {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfe7ee;
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--jf-ink);
  background: #f9fdff;
  font: inherit;
  font-size: 15px;
  text-align: center;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

input::placeholder {
  color: #9fb4c4;
}

input:focus {
  border-color: var(--jf-teal);
  background: var(--jf-white);
  box-shadow: 0 0 0 4px rgba(77, 184, 172, 0.15);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--jf-white);
  background: linear-gradient(135deg, var(--jf-blue), var(--jf-teal));
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.16s ease;
}

button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

button:active {
  transform: translateY(0);
}

.form-message {
  min-height: 20px;
  margin-top: 12px;
  color: #2f827a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-message.error {
  color: #a25121;
}

.note {
  margin-top: 14px;
  color: #9fb4c4;
  font-size: 12px;
  line-height: 1.5;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 22px;
  }

  .card {
    padding: 34px 22px 28px;
  }

  .brand {
    font-size: 28px;
  }

  h1 {
    font-size: 25px;
  }

  .tagline {
    font-size: 15px;
  }
}
