section {
  width: calc(var(--mobile-unit-width) * 12);
  transform: translateX(var(--mobile-unit-width));
  margin-bottom: 3rem;
}

@media screen and (min-width: 900px) {
  .custom-message {
    width: 50%;
  }
}

.custom-message h3 {
  font-size: 36px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.custom-message p {
  font-size: 26px;
  color: #666666;
  line-height: 40px;
  margin-bottom: 19px;
}

.connect-succes {
  margin-top: 1rem;
}

.error {
  color: RED
}

.namaste {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--mid-gray);
  font-weight: 100;
  margin-bottom: 3rem;
}

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

form input {
  margin-top: 1rem;
  font-size: 1.7rem;
  height: 3.5rem;
  border: 1px solid var(--mid-gray);
  padding-left: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: var(--yellow);
}

form input,
form button {
  margin-top: 1rem;
  font-size: 1.7rem;
  height: 3.5rem;
  border: 1px solid var(--mid-gray);
  padding-left: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: var(--yellow);
}

form button {
  background-color: var(--mid-gray);
  color: var(--yellow);
  margin-top: 1rem;
}

form button:hover {
  color: var(--dark-gray);
}

input::placeholder {
  color: var(--light-gray);
}

input::-ms-input-placeholder {
  color: var(--light-gray);
}

input:-ms-input-placeholder {
  color: var(--light-gray);
}

.city-ph {
  display: flex;
  justify-content: space-between;
}

.city {
  width: 58%;
}

.phNo {
  width: 40%;
}

textarea {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  padding: 1rem 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: var(--yellow);
  font-size: 1.7rem;
  margin-top: 1rem;
}

.city input,
.phNo input {
  width: 100%;
}

textarea::placeholder {
  color: var(--light-gray);
}

@media screen and (min-width: 800px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  form button {
    width: calc(var(--desktop-unit-width) * 9);
  }

  section {
    /*    height: 70vh;*/
    margin-bottom: 3rem;
    margin-top: 10rem;
    width: calc(var(--desktop-unit-width) * 30);
    transform: translateX(calc(var(--desktop-unit-width) * 11));
    position: relative;
  }

  .namaste {
    font-size: 5.5rem;
    margin-top: 5rem;
    position: absolute;
    right: calc(var(--desktop-unit-width) * 31);
  }

  form {
    width: calc(var(--desktop-unit-width) * 19);
    position: relative;
    top: 4rem;
  }

  /* textarea {
    width: calc(var(--desktop-unit-width) * 10);
    position: absolute;
    right: 0;
    bottom: 0;
    height: 40vh;
  } */
}

@media screen and (min-width: 1500px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  section {
    margin-top: 5rem;
  }

  .custom-message p {
    font-size: 36px !important;
    line-height: 50px;
    margin-bottom: 30px;
  }

}


#flash-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  background: #28a745;
  /* Green for success */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#flash-message.alert-danger {
  background: #dc3545;
  /* Red for error */
}

#flash-message.alert-info {
  background: #17a2b8;
  /* Blue for info */
}

#flash-message.alert-warning {
  background: #ffc107;
  /* Yellow for warning */
}