.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.detailsContainer {
  max-width: 1019px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cardsContainer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.card {
  width: 239px;
  height: 74px;
  box-shadow: 0px 0px 1px 0px #000000;
  background: #00adb51a;
  border-left: 2px solid #00adb5;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 24px;
}

.cardTitle {
  font-size: 14px;
  font-weight: 500;
}

.cardNumber {
  font-size: 16px;
  font-weight: 700;
}

.overView {
  margin-top: 20px;
}

.overViewTitle {
  font-size: 20px;
  font-weight: 500;
}

.overViewText {
  font-size: 14px;
  font-weight: 400;
}

.overViewTextContainer {
  border-top: 1px solid #d3d3d3;
  padding: 12px 17px;
  margin-top: 12px;
}

.btnContainer {
  width: 979px;
  text-align: center;
}

.btn {
  font-size: 16px;
  font-weight: 400;
  color: #00adb5;
  text-transform: capitalize;
}

.inquiryContainer {
  box-shadow: 0px 0px 1px 0px #000000;
  max-width: 317px;
  /* height: 506px; */
  border-radius: 5px;
}

.inquiryContainer {
  padding: 20px 10px;
}

.formContainer {
  margin-top: 20px;
}

.cardTitle {
  font-weight: 600;
  font-size: 18px;
}

.title {
  font-weight: 500;
  font-size: 32px;
}

.locationBox {
  display: flex;
  align-items: center;
  gap: 4px;
}

.address {
  font-weight: 400;
  font-size: 16px;
}

.price {
  color: #00adb5;
  font-weight: 700;
  font-size: 20px;
  align-self: flex-start;
}

.shareBtn {
  margin-top: 8px;
  padding: 4px 12px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  background: #525252;
  color: #fff;
  border-radius: 5px;
}

.shareBtn:hover {
  background: #333333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.shareIcon {
  margin-right: 4px;
}

.neighborhoodText {
  color: #00adb5;
  font-weight: 500;
  font-size: 14px;
}

.moreOverviewBtn {
  font-size: 16px;
  font-weight: 400;
  color: #00adb5;
  text-transform: capitalize;
}

.arrowIcon {
  margin-left: 4px;
}

/* TextField styles */
.inputRoot {
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  border-radius: 50px;
}

.outline {
  border-color: #e9e9e9;
}

.input {
  font-size: 12px;
  font-weight: 400;
}

textarea.input {
  font-size: 12px !important;
  font-weight: 400 !important;
}

.label {
  font-size: 12px;
  font-weight: 400;
}

.multilineTextFieldOutline {
  border-radius: 15px !important;
}

/* Checkbox and label */
.checkbox {
  padding-top: 0;
}

.termsLabel {
  font-size: 12px;
  font-weight: 400;
}

.checkboxLabel {
  align-items: flex-start;
}

/* Submit button */
.submitBtn {
  background-color: #00adb5;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: capitalize;
  width: 100%;
}

.submitBtn:hover {
  background-color: #008a91;
}

.shareContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 1400px) {
  .container {
    flex-direction: column;
  }

  .detailsContainer {
    max-width: 100%;
  }

  .inquiryContainer {
    max-width: 100%;
  }

  .btnContainer {
    width: 100%;
  }
}

@media screen and (max-width: 632px) {
  .header {
    flex-direction: column;
    /* gap: 10px; */
    align-items: center;
  }

  .shareContainer {
    flex-direction: unset;
    gap: 20px;
  }

  .shareBtn {
    margin-top: 0;
  }

  .headerLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
