.form-container {
  font-family: "poppins", sans-serif;
  /* display:flex; */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 5px 5px 17px #c8c8c8,
    inset -5px -5px 17px #fff;


  /* position: fixed; */
  display: none;
  /* top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.form-container.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  justify-content: center;
  align-items: center;
}

.contact-button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #0056b3;
}

/* Rest of your original CSS styles here */


.form-input,
.form-textarea {
  width: 250px;
  padding: 10px;
  outline: none;
  border: none;
  background: #f0f0f0;
  border-radius: 10px;
  box-shadow: inset 5px 5px 17px #c8c8c8,
    inset -5px -5px 17px #fff;
}

.form-input {
  height: none;
}

.form-textarea {
  resize: none;
  height: 100;
}

.submit-button {
  width: 100px;
  height: 40px;
  border-radius: 10px;
  outline: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  background-color: #5190d3;
  box-shadow: inset 5px 5px 17px #020079,
    inset -5px -5px 17px #002472;
}

.submit-button:hover {
  background-color: #020079;
  color: #c1ccd8;
  transform: translateY(10pxS);

}

.submit-button:active {
  color: #000000;
  background: #007bff;
  transform: scale(0.97);
}