* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "neue-haas-grotesk-display", sans-serif;
  background: #dcbcc4;
  background-size: cover; 
  max-width: 100%;
  max-height: 100vh;
}

/* Return to main content */
section h2 a.return {
  display: block;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  margin: 10px;
  color: aliceblue;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  padding: 5px;
  width: 250px;
}

/* Same title logo as welcome page */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

section h1 a.junkfood-logo {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 100px;
  font-weight: 900;
  text-decoration: none;
  color: aliceblue;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-shadow: 0px 0px 10px #000000;
  font-style: normal;
  letter-spacing: 0.5px;
  width: 500px;
} 

/* Form login page */
form {
  display: flex;
  font-size: 30px;
  padding: 10px;
  margin: 35%;
  margin-top: 5%;
  border-radius: 50px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}


@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

/* Login form section */
form div h3 {
  font-size: 50px;
  font-weight: 900;
  color: aliceblue;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

form div.form-group {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  margin-left: 12.5%;
  width: 75%;
  text-align: center;
}

form div input {
  display: flex;
  margin-top: 20px;
  font-size: 25px;
}

 
input.placeholder {
  text-align: center;
}
 
#btn {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-content: center;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  background-color: #247BA0;
  color: aliceblue;
}

/* Clicking sumbit form will display login confirmation */
h4#response {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;;
}



/* Media Queries */

/* Tablets */
@media screen and (max-width: 992px) {
  form {
    width: 50%;
    margin-left: 250px;
  }
  button.btn {
    margin-left: 190px;
  }
}
  
  /* Large smartphones - navbar changes color */
  @media screen and (max-width: 768px) {
   form {
     margin-left: 190px;
   }
   button.btn {
    margin-left: 140px;
  }
}

/* Small smartphones - image placeholders change color */
@media screen and (max-width: 576px) {
  form {
    width: 60%;
    margin-left: 115px;
  }
  form div input {
    width: 75%;
  }
  button.btn {
    margin-left: 125px;
  }
}
