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

body {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #111827;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

h1 {
  font-size: 34px;
  margin-bottom: 8px;
}

.subtitle {
  color: #667085;
  font-size: 18px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d0d7e2;
  border-radius: 10px;
  font-size: 16px;
}

.btn-primary {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #2f66f5;
  color: white;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

#message {
  margin-bottom: 18px;
  font-weight: 700;
}

.success {
  color: green;
}

.error {
  color: red;
}

/* Rider navigation */
.rider-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
}

.rider-nav a,
.rider-nav button {
  border: 0;
  border-radius: 999px;
  background: #eef2ff;
  color: #1f2a44;
  padding: 9px 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.rider-nav a:hover,
.rider-nav button:hover {
  background: #dbe4ff;
}

.rider-nav button {
  background: #fee2e2;
  color: #991b1b;
}

.rider-nav button:hover {
  background: #fecaca;
}

.small-note {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}

.small-note.success {
  color: #15803d;
  font-weight: 700;
}

.small-note.error {
  color: #b91c1c;
  font-weight: 700;
}

.btn-secondary {
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
}

.btn-secondary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
