
/* Custom CSS for form styling */
select,
textarea {
  margin-bottom: 10px; /* Add some space below input fields */
  width: 250px; /* Set width for text input fields and select dropdowns */
}
.form-container {
  text-align: center; /* Center align the content horizontally */
  border: 1px solid #ccc; /* Add border around the form container */
  padding: 20px; /* Add padding to the form container */
}
.input-group {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group label {
  flex: 0 0 250px;
  text-align: right;
  margin-right: 10px;
}

.input-group input,
.input-group textarea {
  flex: 1;
  max-width: 250px
}

/* Custom CSS for submit button */
input[type="submit"] {
  /* Add your desired styles here for some pizzazz */
  background-color: #4CAF50; /* Green background */
  color: white; /* White text color */
  padding: 10px 20px; /* Add padding to the button */
  border: none; /* Remove default button border */
  border-radius: 5px; /* Add some border radius for rounded corners */
  cursor: pointer; /* Change cursor to pointer on hover */
  transition: background-color 0.3s; /* Add transition for smoother hover effect */
}

input[type="submit"]:hover {
  background-color: #45a049; /* Darker green on hover */
}
/* Media query for smaller screens (e.g., mobile devices) */
@media only screen and (max-width: 600px) {
  .input-group {
    flex-wrap: wrap; /* Allow input and label to wrap to next line */
  }

  .input-group label {
    flex: 0 0 100%; /* Full width for label on smaller screens */
    text-align: left; /* Left-align label */
    margin-right: 0; /* Remove right margin for label */
    margin-bottom: 5px; /* Add some space below label */
  }

  .input-group input,
  .input-group textarea {
    flex: 0 0 100%; /* Full width for input on smaller screens */
  }
}
