* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #d9f3ff, #f7fbff);
  color: #1f2937;
}

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

.card {
  width: 920px;
  background: white;
  border-radius: 22px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 50px;
  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.12);
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.info h1 {
  margin: 0 0 14px;
  font-size: 34px;
}

.info p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.steps {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.steps div {
  padding: 14px 16px;
  border-radius: 12px;
  background: #f1f5f9;
  font-weight: 700;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #38bdf8;
  background: white;
}

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

button {
  margin-top: 8px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #ff6b75;
  color: white;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

button:hover:not(:disabled) {
  filter: brightness(0.96);
}

button:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.status,
.form-message {
  margin: -4px 0 2px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

.status.checking {
  background: #e0f2fe;
  color: #075985;
}

.status.success {
  background: #dcfce7;
  color: #166534;
}

.status.error,
.form-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
}

.hidden {
  display: none;
}

@media (max-width: 850px) {
  .card {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 28px;
  }

  .info h1 {
    font-size: 28px;
  }
}