
.contact-delete {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ContactTitle {
  padding-bottom: 40px;
}

input[type="tel"],
input[type="text"] {
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  text-align: left;
}

.contactButton {
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contactButton:hover {
  background-color: #0056b3;
  transition: .5s;
}

.modal {
  display: none; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(150, 147, 147, 0.4);
  z-index: 1;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #cac9c9;
  width: 70%;
  border-radius: 8px;
}

.contactClose {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.contactClose:hover,
.contactClose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

