*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0a0a0a;
  background: #e5e5e5;
}

.site-header {
  background: #45aaf2;
  padding: 18px 20px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logo {
  display: grid;
  place-items: center;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.page-content {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px 80px;
  display: flex;
  justify-content: center;
}

.signup-card {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 40px 36px;
  box-shadow: 0 4px 0 #9d9d9d, 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.signup-card h1 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
}

.progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 1px solid #c9c9c9;
}

.progress-bar {
  display: block;
  width: 48%;
  height: 100%;
  background: #3b99e0;
}

.step-text {
  margin: 0 0 22px;
  font-weight: 600;
  color: #7b7b7b;
  font-size: 14px;
}

.signup-form {
  display: grid;
  gap: 12px;
  text-align: left;
}

.field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1f1f1f;
}

.field-label {
  font-size: 13px;
}

.signup-form input,
.signup-form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 6px;
  border: 1px solid #c9c9c9;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
}

.signup-form select {
  appearance: auto;
}

.cta-button {
  margin-top: 6px;
  border: none;
  border-radius: 6px;
  padding: 14px 18px;
  background: #3794db;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(55, 148, 219, 0.35);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 600px) {
  .signup-card {
    padding: 28px 22px 30px;
  }

  .signup-card h1 {
    font-size: 22px;
  }
}
