/* The Modal (background) */
 .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* 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 */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 25px auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  /* width: 80%; Could be more or less, depending on screen size */
  max-width: 28rem;
}

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

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

form {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.contest-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.contest-wrapper img {
  height: 200px;
}

.signup-form input {
  display: block;
  width: 100%;
  /* height: calc(2.0625rem + 2px); */
  font-size: 0.875rem;
  line-height: 1.5;
  background-clip: padding-box;  
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  border: 2px solid #00ffcd !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0;
  font-family: inherit;
  overflow: visible;
  padding: 15px 20px !important;
  border-radius: 10px !important;
  background-color: #fff;
  color: #1a1936;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  text-align: center;
}

form .w-button {
  width: 100% !important;
  border: 0;
  cursor: pointer;
  padding: 15px 20px !important;
  border-radius: 10px;
  background-color: #00ffcd;
  color: #1a1936;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

form .w-button:hover,
form .w-button:active,
form .w-button:focus {
  background-color: #fff07c !important;
  border-color: #fff07c !important;
}

.round-btn {
  background-color: #1a1936;
  height: 50px;
  border-radius: 50%;
}

.round-btn img {
  height: 70%;
  margin: 20% auto;
}