.contactContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 10rem;
}

form{
    display: flex;
    flex-direction: column;
    max-width: 100%;
   
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
   
}

input[type=text], input[type=email], textarea, select {
  
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Important for layout */
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical; /* Allows user to resize textarea vertically only */
}

/* Style for the submit button */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

textarea{
    width: 50rem;
}