body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 5px 0;
  text-align: center;
  background-color: #a8d5a2;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #8fbc8f;
}

h1 {
  text-align: center;
  margin: 30px 0 10px;
  color: #222;
}

.button-container {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
  padding: 30px;
  background-color: #f9fdf9;
  border: 1.5px solid #c7e1c7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.button-link.primary {
  width: 100%;
  padding: 14px;
  font-size: 17px;
  background-color: #a8d5a2;
  color: white;
}

.button-link.primary:hover {
  background-color: #7cb977;
}

.register-buttons {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.button-link.secondary {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  background-color: #8fc0a9;
  color: white;
}

.button-link.secondary:hover {
  background-color: #6da88f;
}