.modal-header {
  text-align: center;
  border-bottom: var(--border-grey);
}

.modal-footer {
  border-top: var(--border-grey);
}

.modal-text {
  text-align: center;
  margin-bottom: 20px
}

#input-confirm {
  width: 50%;
  margin: 1% 25%;
  padding: 1%;
  font-size: 130%;
  outline: none;
  border: var(--border-grey);
  border-radius: 15px;
  background: #FFF;
  transition: all linear var(--transition-time);
}
#input-confirm:hover {
  width: 52.5%;
  margin: 0.5% 23.75%;
  padding: 1.5% 1%;
  border-color: var(--highlight-color);
}

#em:focus, #fn:focus, #ln:focus {
  outline: 3px solid var(--highlight-color);
}
