body {
  font-family: "Arial", sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: bold;
}

input[type=text],
input[type=date],
input[type=password],
input[type=email] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
input[type=text]:focus,
input[type=date]:focus,
input[type=password]:focus,
input[type=email]:focus {
  border-color: #007bff;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.radio-group label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.checkbox-group label {
  font-weight: normal;
}

button {
  width: 100%;
  padding: 0.75rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #0056b3;
}

.error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.info-group {
  margin-bottom: 1rem;
}
.info-group label {
  font-weight: bold;
  color: #555;
}
.info-group p {
  margin: 0.5rem 0;
  color: #333;
  background-color: #f8f9fa;
  padding: 0.75rem;
  border-radius: 5px;
}

.back-button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}
.back-button:hover {
  background-color: #218838;
}

/*# sourceMappingURL=style.css.map */
