.standalone .form-wrapper {
  display: block;
}
.form-wrapper {
  display: none;
}

.standalone .add-home {
  display: none;
}
.add-home {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.add-home h1 {
  padding-top: 300px;
  color: black;
  text-align: center;
}
.add-home img {
  width: 100%;
  height: auto;
}

.scroll {
  overflow-y: auto;
  height: 100vh;
  background-color: #fff;
}

#share {
  top: 60px;
  right: 10px;
}
#share svg {
  width: 26px;
  height: 26px;
}

#orderForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 10%;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

#orderForm label {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 3px;
  margin-left: -28px;
}

#orderForm input {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  padding: 10px 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #f5f5f5;
  font-size: 16px;
}

#orderForm #logoImage {
  width: 100%;
  height: 100%;
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  object-fit: cover;
  border: 5px solid #ccc;
  border-radius: 100%;
  margin-bottom: 20px;
}

#orderForm .buttons {
  margin-top: 30px;
  width: 100%;
}

#orderForm a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  background-color: #01615f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
#orderForm a:hover {
  background-color: #014d4b;
  transform: scale(1.05);
}
#orderForm a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-right: 10px;
  vertical-align: middle;
}
