
@font-face {
  font-family: 'Roboto Condensed';
  src: url('RobotoCondensed-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900; /* full weight range */
  font-stretch: 75% 125%; /* if supported */
  font-style: normal; /* or use `italic` if it's an italic variable font */
  font-display: swap;
}

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.background-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4vw;
  background-color: #004f8c;
  width: 100%;
  min-height: 100vh;
  background-image: url(images/allegiant-background-guest-wifi.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.background-container #footer-icons{
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 50%;
}
.content-container {
  padding: 30px;
  width: 800px;
  max-width: 100%;
  background-color: #f1f1f1;
  border-radius: 5px;
  filter: drop-shadow(5px 5px 12px rgba(0,0,0,.4));
 position: relative;
 z-index: 2;
 box-sizing: border-box;
}
.content-container * {
  font-family: sans-serif;
  box-sizing: border-box;
}
.content-container .image-container{
    text-align: center;
}
.content-container .image-container img{
text-align: center;
display: inline-block;
}
.content-container h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.content-container .terms-container{
    padding: 30px;
    background-color: #cecece;
    border-radius: 5px;
}
.content-container h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.content-container p {
  font-size: 1rem;
  text-align: center;
}
.content-container .terms-container p{
  font-size: .9rem;
  text-align: left;
}

.content-container .submit-container {
  text-align: center;
  margin-top: 30px;

}
.content-container .submit-container .submit-button {
  display: inline-block;
  text-decoration:none;
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2rem;
  padding: 15px 20px;
  line-height: 1;
  border-radius: 3px;
  border: none;
  color: #ffffff;
  background-color: #004f8c;
  cursor: pointer;
  transition: all .3s ease-in-out;
  margin-bottom: 10px;
}
.content-container .submit-container .submit-button:hover, .content-container .submit-container .submit-button:active,.content-container .submit-container .submit-button:focus{
  background-color: #007CC2;
  }
