/* General form styling */
form {
  display: inline-block;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Form labels */
label {
  display: block;
  margin-bottom: 5px;
}

/* Form inputs */
input {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* Form submit buttons */
input[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

/* Specific form styles */
.text-input-form {
  width: 200px;
}

.checkbox-form {
  display: flex;
  align-items: center;
}

.checkbox-form input {
  width: auto;
}

.radio-form {
  display: flex;
  flex-direction: column;
}

.radio-form label {
  margin-bottom: 0;
}

.radio-form input {
  margin-right: 5px;
}

.select-form {
  width: 150px;
}
