body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}



.form-wrapper {
  padding: 20px;
  width: 100%;
  max-width: 700px;
}

.form-container {
  background-color:white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-group,
.form-subgroup {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #333;
}

.form-button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  width: 100%;
}

.form-button:hover {
  background-color: #555;
}

.form-hint {
  font-style: italic;
  color: #666;
}

.hidden {
  display: none;
}

@media screen and (max-width: 600px) {
  .form-input,
  .form-textarea {
    width: 100%;
    font-size: 1rem;
  }

  .form-button {
    font-size: 1rem;
  }
}
