@charset "utf-8";

/* Modal Styles */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
/*  position: fixed;*/
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f9dec0;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15px auto;
  padding: 20px;
  width: 80%;
	height: auto;
  max-width: 700px;
  border-radius: 10px;
  position: relative;
}

/* Close Button */
.close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover { color: black; }

#email-form {
    margin-top: 20px;
}

#email {
    padding: 10px;
    width: calc(100% - 22px); /* Full width minus padding */
}

button[type="submit"] {
    padding: 10px 15px;
}
