/* Reuse landing page palette */
:root {
  --primary-color: #0072B0;
  --secondary-color: #f5f5f5;
  --text-color: #000;
  --accent-color: #FF8080;
}

body {
  margin: 0;
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  background-color: var(--secondary-color);
  color: var(--text-color);
  min-height: 100vh;
}

/* header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
} */

header img {
  height: 40px;
}

main {
  padding: 1rem;
  /* max-width: 500px; */
  margin: 0 auto;
  
}

.form-container {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-container h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: black;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input, select, textarea, button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  margin-top: 1.5rem;
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #ff4040;
}

#message {
  margin-top: 1rem;
  text-align: center;
  color: red;
}

p {
  text-align: center;
  margin-top: 1rem;
}

/* existing styles omitted for brevity */

.gender-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.3rem;
}

.gender-options label {
  font-weight: normal;
}
button{
  font-family: inherit;
}
.main {
  min-height: 100vh;
  display: flex;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering */
}
main {
  padding: 0;
}

.card {
  max-width: 500px;
  width: 100%;
}
.gender-options label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: normal;
}
