.website-apply-page {
  min-height: 100vh;
  background: #f6f8fb;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.website-apply-wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.website-apply-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.website-apply-nav a {
  color: #2563eb;
  text-decoration: none;
}

.website-apply-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  padding: 30px;
}

.website-apply-head h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.25;
}

.website-apply-head p {
  margin: 0 0 24px;
  color: #475569;
  line-height: 1.7;
}

.website-apply-form {
  display: grid;
  gap: 18px;
}

.website-apply-field {
  display: grid;
  gap: 8px;
}

.website-apply-field span {
  font-weight: 600;
  color: #1e293b;
}

.website-apply-field input,
.website-apply-field select {
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 15px;
  background: #fff;
  color: #0f172a;
}

.website-apply-url {
  height: 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.website-apply-url em {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-style: normal;
}

.website-apply-url input {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 0;
  padding: 0 12px;
}

.website-apply-url:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.website-apply-field input:focus,
.website-apply-field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.website-apply-url input:focus {
  box-shadow: none;
}

.website-apply-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
}

.website-apply-captcha input {
  flex: 1;
}

.website-apply-captcha img {
  width: 116px;
  height: 42px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  cursor: pointer;
}

.website-apply-form button {
  width: 150px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.website-apply-form button:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.website-apply-message {
  min-height: 24px;
  color: #475569;
  line-height: 1.6;
}

.website-apply-message.is-success {
  color: #047857;
}

.website-apply-message.is-error {
  color: #dc2626;
}

.website-apply-notice {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .website-apply-wrap {
    width: min(100% - 24px, 920px);
    padding: 28px 0 44px;
  }

  .website-apply-card {
    padding: 22px;
  }

  .website-apply-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .website-apply-form button {
    width: 100%;
  }
}
