/* Basic Modal Styling */
.stay-in-touch-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-overlay {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
}

.modal-content {
  position: relative;
  margin: 10% auto;
  max-width: 400px;
  padding: 80px 30px 30px 30px; /* top padding increased */
  background: #000;
  border: 1px solid #333;
  z-index: 10000;
  text-align: left;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.modal-content label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  margin-bottom: 5px;
  margin-top: 15px;
}

.modal-content input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  padding: 10px 5px;
  width: 90%;
  box-sizing: border-box;
  margin-top: 5px;
}

.modal-content input[type="email"]::placeholder {
  color: #fff;
  opacity: 0.5;
}

.modal-content .titulo {
  font-size: 36px;
  font-family: 'Anton', sans-serif;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding-top: 15px;
}

/* Top border (short white line above text, left-aligned) */
.modal-content .titulo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #fff;
}

.modal-content input[type="text"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  padding: 10px 5px;
  width: 90%;
  box-sizing: border-box;
  margin-top: 5px;
}

.modal-content input[type="text"]::placeholder {
  color: #fff;
  opacity: 0.5;
}

.modal-content .sub-note {
  font-size: 13px;
  color: #ccc;
  font-family: 'Roboto', sans-serif;
  margin-top: 8px;
  line-height: 1.4;
}
