* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: rgba(68, 77, 84, 1);
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  position: relative;
}

@media screen and (max-width: 1360px) {
  body {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  color: rgba(68, 77, 84, 1);
  border-bottom: 2px solid #97bc3e;
  transition: all 200ms ease-in-out;
}

a:hover {
  -webkit-box-shadow: inset 0 0 0 rgba(151, 188, 62, 0),
    0 2px 0 rgba(151, 188, 62, 1);
  box-shadow: inset 0 0 0 rgba(151, 188, 62, 0), 0 2px 0 rgba(151, 188, 62, 1);
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: absolute;
  background-color: #0075bc;
  width: 100%;
  height: 71px;
  display: flex;
  justify-content: center;
}

.site-header > .container {
  display: flex;
  align-items: center;
}

.site-header img {
  height: 25px;
}

.content {
  background-image: url(../images/explore-logo.svg),
    url(../images/zendesk-header.jpg);
  background-size: 75vh, cover;
  background-position: 78vw center, center center;
  background-repeat: no-repeat;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 961px) {
  .content {
    min-height: 680px;
    padding-bottom: 2em;
  }
}

@media screen and (max-width: 960px) {
  .content {
    background-image: url(../images/zendesk-header.jpg);
    background-size: cover;
    background-position: center center;
  }
}

.content h1 {
  display: inline-block;
  background-color: #8b939a;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 1px 14px;
  margin: 0.1em auto 1.1em;
}

.content h2 {
  color: #0076bf;
  font-size: 43px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin: 0.1em auto 1.1em;
}

@media screen and (max-width: 1360px) {
  .content h1 {
    font-size: 14px;
    margin: 0 auto 0.5em;
  }

  .content h2 {
    font-size: 36px;
    margin: 0 auto 0.25em;
  }
}

/* Inputs */

.input-wrapper,
.submit-wrapper {
  max-width: 560px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
}

.input-wrapper label {
  padding-bottom: 5px;
  position: relative;
  display: block;
}

.input-wrapper input[type="text"],
.input-wrapper input[type="password"] {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 13px 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.submit-wrapper {
  margin-bottom: 40px;
}

.submit-wrapper input[type="submit"] {
  width: 100%;
  text-align: center;
  background-color: #464c53;
  color: #fff;
  border: 0;
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  max-height: 49px;
  line-height: 49px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 2em;
  cursor: pointer;
}

@media screen and (max-width: 1360px) {
  .input-wrapper,
  .submit-wrapper {
    margin: 0 auto 6px;
  }

  .input-wrapper input[type="text"],
  .input-wrapper input[type="password"] {
    padding: 8px 10px;
    font-size: 14px;
  }

  .submit-wrapper {
    margin-bottom: 1em;
  }

  .submit-wrapper input[type="submit"] {
    font-size: 16px;
    max-height: 36px;
    line-height: 36px;
    margin-top: 0.5em;
  }

  .input-wrapper label {
    padding-bottom: 2px;
  }
}

/* Error message */

.error {
  display: none;
  color: #d8000c;
  margin-bottom: 15px;
}

/* Footer */

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #bdc2c6;
  padding: 15px 0;
  border-bottom: 4px solid #659841;
}

footer img {
  width: 65px;
  display: block;
  margin-left: auto;
  border-radius: 5px;
}

/* Media queries */

@media screen and (max-width: 960px) {
  .site-header,
  footer {
    position: relative;
  }

  .content {
    height: auto;
    padding: 3em 0;
  }

  .content h2 {
    font-size: 36px;
    line-height: 1.25;
  }
}

/* Make html visible to prevent flash of unstyled content */

html {
  visibility: visible;
  opacity: 1;
}
