* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #e5f0c6;
}

.container {
  display: flex;
  height: 100vh;
  width: 100%;
}
.left-section {
  width: 40%;
  position: relative;
  background-color: white;
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  overflow: hidden;
  height: 100vh;
}

.left-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center; 
}

.right-section {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #ffffff 60%, #e5f0c6 60%);
}

.form-wrapper {
  width: 80%;
  max-width: 500px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  width: 50%;
  padding: 8px 0;
  border: none;
  background-color: #f3f3f3;
  font-weight: bold;
  cursor: pointer;
}

.tab.active {
  background-color: #ffffff;
  color: #4CAF50;
  text-decoration: underline;
}

.title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #000;
}

.top-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.select-date, .doc-btn {
  padding: 6px 12px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

form input[type="text"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.input-group {
  position: relative;
  margin: 8px 0;
}

.input-group input {
  width: 100%;
  padding-right: 50px;
}

.label {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ccc;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.sub-heading {
  font-weight: bold;
  margin-top: 15px;
  font-size: 14px;
}

.note {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}

.dimension-inputs {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 20px;
}

.dimension-inputs input {
  width: 20%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.continue-btn {
  background-color: #00aaff;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}
/* Make form responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-section {
    width: 100%;
    height: 300px;
    border-radius: 0;
  }

  .right-section {
    width: 100%;
    padding: 30px 20px;
    background: #fff;
    background: linear-gradient(120deg, #ffffff 60%, #e5f0c6 60%);
  }

  .form-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .dimension-inputs input {
    width: 100%;
    flex: 1;
  }

  .dimension-inputs {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Update calendar input styles */
.select-date[type="date"] {
  padding: 6px 12px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
