body {
  font-family: "Inter", sans-serif;
  background-color: #f9fafb;
  color: #1e293b;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  background: white;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  height: 36px;
}

.container {
  flex: 1;
  padding: 2rem;
  max-width: 420px;
  margin: 0 auto;
}

h2 {
  color: #184b8c;
  margin-bottom: 1rem;
}

.subtitle {
  color: #6b7a90;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

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

input, select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: #184b8c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #153d72;
}

.status {
  margin-top: 1.2rem;
  font-weight: 500;
}

.footer {
  border-top: 1px solid #e2e8f0;
  padding: 1rem;
  background: white;
  font-size: 0.85rem;
  color: #6b7a90;
}
