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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f3f2f1;
  color: #323130;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #0078d4;
  padding: 16px 32px;
}

header a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1.6px 3.6px rgba(0,0,0,.13), 0 0.3px 0.9px rgba(0,0,0,.1);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.icon.success { color: #107c10; }
.icon.cancel  { color: #a80000; }

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #323130;
}

p {
  color: #605e5c;
  line-height: 1.6;
  margin-bottom: 12px;
}

.steps {
  text-align: left;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #323130;
  font-size: 0.95rem;
  line-height: 1.5;
}

.steps li::before {
  content: counter(step);
  min-width: 24px;
  height: 24px;
  background: #0078d4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #0078d4;
  color: #fff;
}

.btn-primary:hover { background: #106ebe; }

.btn-secondary {
  background: #fff;
  color: #0078d4;
  border: 1px solid #0078d4;
  margin-left: 12px;
}

.btn-secondary:hover { background: #f3f2f1; }

footer {
  text-align: center;
  padding: 16px;
  color: #605e5c;
  font-size: 0.8rem;
}

footer a { color: #0078d4; text-decoration: none; }
