
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  display: flex;
  
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  height: 100%;
  width: 50vw; 
  max-width: 400px; 
  margin: 0 auto; 
}


.upload-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 400px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-cotent{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
h1 {
  text-align: center;
  margin-bottom: 20px;
}





.custom-file-input {
  display: inline-block;
  padding: 10px 15px;
  background-color: #e3e9ed;
  color: #000000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* CSS for upload button */
button {
  display: block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #2ecc71;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Style for hover effect */
.custom-file-input:hover,
button:hover {
  opacity: 0.8;
}



#imageContainer {
  margin-top: 20px;
  text-align: center;
}

