.header {
  background-color: black;
  height: auto;
  background-image: linear-gradient(rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.7)),
    url(/images/Untitleddesign.png);
}

body {
  font-family: Arial, sans-serif;
  color: white;
}

.container {
  max-width: 800px; /* Increase the maximum width of the container */
  margin: 50px auto;
  padding: 20px;
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(5, 0, 0, 0.1);
  margin-top: -50px;
}

.form-container {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;
}

form {
  flex: 1;
  margin-right: 20px; /* Space between form and image preview */
}

.image-preview {
  border: 2px dashed #4caf50;
  padding: 10px; /* Padding inside the box */
  background-color: transparent; /* Light background color */
  border-radius: 5px; /* Rounded corners */
  text-align: center; /* Center the text and image */
  margin-top: 20px; /* Space above the preview box */
  max-width: 300px; /* Set a maximum width for the image preview */
}

.image-preview img {
  max-width: 100%; /* Ensure the image fits within the box */
  max-height: 200px; /* Set a maximum height for the image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 5px; /* Rounded corners for the image */
}

h1 {
  text-align: center;
  color: #4caf50; /* Green color for headings */
}

.form-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

form {
  flex: 1;
  margin-right: 20px;
}

label {
  display: block;
  margin: 10px 0 5px;
}

input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px;
  background-color: transparent;
  border-radius: 4px;
  color: white;
  box-shadow: 0 0 10px #ffffff;
}

button {
    background-color: #4CAF50; /* Green button */
    color: rgb(234, 234, 234);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 10px;
}

button:hover {
  background-color: #e3c013; /* Darker green on hover */
}
