
body {
  font-family: Montserrat;
  background: #E7E7E7;
  color: #182139;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 90vh;
}

h1 {
  font-variant: small-caps;
  font-weight: 600;
  font-size: 9vw;
}

h2 {
  /* font-variant: small-caps; */
  font-weight: 600;
  font-size: 2vw;
}

p {
  font-size: 18px;
}

button {
  height: 33px;
  min-width: 100px;
  border: none;  
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(90deg, #EF3333 0%, #D21313 100%); 
  width: fit-content;
  width: -moz-fit-content;     
  margin: 0px auto;   
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
}

.close-button {
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  background-color: lightgray;
}

.close-button:hover {
  background-color: darkgray;
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1.0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.form {
  display: flex;
  justify-content: space-between;
  margin: auto;
  width: 80%;
  margin-bottom: 10px;

}

form {
  margin-bottom: 12px;
}

sub {
  font-size: 2vw;
  margin-left: -15px;
}

#error {
    visibility: hidden;
    font-size: 12px;
    color: red;
}
  