input  {
  color: white;
}

h2,
p {
  text-align: center;
}

p {
  margin: 50px;
}
.modal-content {
  background-color: #006ff7;
  color: white;
  width: 65%;
  margin: 50px auto;
  border-radius: 12px;
  box-shadow: 8px 8px grey;
}

.login-form {
  /*margin: 50px auto;*/
}

.form-container {

  padding: 10px;
}

.close:hover,
.close:focus {
  cursor: pointer;
}

.sign-in-btn {
  transition-duration: 0.4s;
  background-color: #ff8c00;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  margin: 50px auto;
}

.sign-in-btn:hover {
  background-color: #55d272;
}

.nav-wrapper {
  text-align: center;
  background-color: #55d272;
}

input {
  padding: 10px;
}

/* 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 */
}



/* 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;
}


@media screen and (max-width: 798px) {

    .modal-content {

      width: 85%;
      margin: 25px auto;
      border-radius: 6px;
      box-shadow: 4px 4px grey;
    }

}

