:root {
  --font-title: "Exo", sans-serif;
  --font-sub: "Exo", sans-serif;
  --font-text: "Exo", sans-serif;
  --color-primary: #5b6090;
}

@font-face {
  font-family: "Exo";
  src: url("Exo-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Exo";
  src: url("Exo-Medium.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("SourceSansPro-Regular.ttf");
}

body {
  padding-inline: 50px;
  font-family: var(--font-text);
  font-weight: normal;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
header {
  margin-top: 25px;
  margin-bottom: 25px;
}
img {
  max-width: 100%;
  max-height: 100%;
}
.img-container {
  height: 10vh;
}
form {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-lines {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-top: 30px;
}
.form-lines label {
  font-size: 0.9rem;
  font-family: var(--font-sub);
  font-weight: bold;
}
input {
  border: none;
  border-bottom: 1px solid var(--color-primary);
  font-size: 1.2rem;
}
option {
  font-size: 1rem;
}
input[type="submit"] {
  cursor: pointer;
  font-family: var(--font-title);
  border: none;
  background-color: var(--color-primary);
  color: white;
  padding-block: 10px;
  font-size: 1.2rem;
  margin-top: 10%;
  border-radius: 5px;
}
span {
  font-style: italic;
  font-weight: bold;
  color: var(--color-primary);
}

input:focus {
  outline: none;
}

#confirmation {
  display: none;
  flex-direction: column;
  justify-content: center;
}

#confirmation span {
  font-style: normal;
}
h1 {
  font-family: var(--font-title);
}
h2 {
  margin-top: 50px;
}
a {
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: bold;
}
#error {
  display: none;
  margin-top: 15px;
  padding-inline: 20px;
  padding-block: 10px;
  background-color: rgba(255, 204, 0, 0.5);
  border-radius: 10px;
}
.confirmationImageContainer {
  margin-top: 20px;
  height: 5vh;
}

.confirmationBannerContainer {
  height: 60vh;
}

@media only screen and (max-width: 768px) {
  .confirmationBannerContainer {
    margin-top: 20px;
    width: 100vw;
    height: auto;
  }
  .confirmationImageContainer {
    margin-top: 50px;
  }
  body {
    padding-inline: 0;
  }
  h1 {
    font-size: 1.6rem;
  }
}
