body {
    font-family: Arial, sans-serif;
}

.container {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
/* CSS for content placed to the left of the web page using float */
.left-content {
  float: left;
  background-color: green;
  /* You can also add a width to the left content if needed */
  width: 30%; /* Adjust the width as per your requirements */
  /* Optionally, you can add margin to create some space between the content and the rest of the page */
  margin-right: 20px; /* Adjust the margin as per your design */
}

/* Clear the float to prevent issues with following elements */
.clear-float {
  clear: both;
}



