* {
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 420px;
}

.logo {
  color: #26b562;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
}

.form-card {
  background-color: #f5fffa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

h2 {
  font-size: 1.2em;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

label {
  font-size: 0.85em;
  color: #333;
  margin-bottom: 5px;
}

input, select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95em;
}

input:focus, select:focus {
  border-color: #26b562;
  outline: none;
  box-shadow: 0 0 0 2px rgba(38,181,98,0.2);
}

button {
  background-color: #26b562;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #21a056;
}