* {
  font-family: Helvetica;
}

textarea {
  width: 100%;
  height: 100px;
  font-size: 17px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

/* Modal Content */
.modal-content {
  width: 50%;
  position: absolute;
  top: 30%;
  margin-left: 25%;
  background-color: #fefefe;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

/* The Close X Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: rgb(51, 51, 51);
  color: white;
}

.modal-body {
  padding: 2px 16px;
}

.modal-body p {
    font-size: 17px;
    padding: 0px;
    margin-top: 9px;
}

.modal-footer {
  padding: 2px 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  background-color: white;
  color: white;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.row {
    margin-top: 10px;
    margin-bottom: 10px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.left {
  float: left;
  width: 10%;
  text-align: left;
}

.right {
  float: left;
  width: 90%;
}

.modal-input {
  width: 100%;
  height: 32px;
  font-size: 17px;
}

.error {
  color: red; 
  text-align: center;
}