body {
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}
.container-1 {
  width: 100%;
  height: 55vh;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 0 40px rgba(200, 174, 174, 0.1);
  border-radius: 10px;
}
.container-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.left-box,
.right-box {
  flex: 0 0 48%; 
  margin-bottom: 20px;
}
.left-box {
  background-color: #f0f0f0; 
  padding: 20px;
  overflow: hidden;
}

.left-box label {
  font-weight: bold;
}
.right-box {
  background-color: #f9f9f9; 
  padding: 10px;
  padding-left: 200px;
  overflow: hidden;
}
p {
  font-weight: 700;
}

.right-box label {
  font-weight: bold;
}
form {
  margin-top: 20px;
}

form label {
  font-weight: bold;
}
.form-control {
  width: calc(80% - 20px);
  margin-right: 10px;
}

.form-control:last-child {
  margin-right: 0;
}
form select,
form input[type="text"] {
  margin-bottom: 10px;
}
.row3 button {
  margin-right: 10px;
}
#image-container {
  max-width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  overflow: hidden;
}
#image-container img {
  width: auto; 
  height: auto; 
  margin: 10px; 
  margin-top: 60px;
  overflow: hidden;
}
.image {
  width: 90px;
  height: 90px;
  padding-bottom: 10px;
  cursor: pointer;
  flex-direction: row;
}
@media only screen and (min-width: 576px) {
  .form-control {
    width: calc(70% - 20px);
  }
}
@media only screen and (min-width: 768px) {
  .row1,
  .row2,
  .row3 {
    display: flex;
  }

  .row3 {
    margin-top: 10px;
    text-align: center;
  }
}

.left-box {
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buttons-container {
  margin-top: auto; 
  display: flex;
  justify-content: space-between;
}
button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
  font-weight: 500;
}
button:hover {
  background-color: #0056b3;
}