header h1 {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: italic;
  margin: 0%;
  font-size: 50pt;
}

body {
  background-color: rgb(15, 159, 225);

}


header a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}


nav ul {
  list-style: none;
  display: flex;
  padding-left: 1%;
  margin-top: 0.5%;
}

nav ul li {
  margin-right: 20px;
  font-family: 'Georgia', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-style: italic;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #f00;
}


body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  min-height: 100vh;
}

.container form {
  padding: 20px;
  width: 700px;
  background-color: rgb(255, 255, 255);
}

.container form .row {
  display: flex;
  flex-wrap: wrap;
}


h3 {
  font-size: 20px;
  color: #333;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.container form .row .col .input-box {
  margin: 15px 0;
}

.container form .row .col .input-box span {
  margin-bottom: 10px;
  display: block;
}

.container form .row .col .input-box input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 15px;
  text-transform: none;
}


.container form .row .col .flex {
  display: flex;

}

.container form .row .col .flex .input-box {
  margin-top: 5px;
}

.container form .row .col .input-box img {
  height: 34px;
  margin-top: 5px;
  filter: drop-shadow(0 0 1px #000);
}

.container form button {
  width: 100%;
  padding: 12px;
  font-size: 17px;
  border: none;
  background-color: rgb(0, 157, 255);
  color: #fff;
  margin-top: 5px;
  cursor: pointer;
}

.container form button:hover {
  background-color: rgb(0, 255, 26);
  transition: 0.3s ease-in-out;
}


footer {
  text-align: center;
  color: #fff;
  font-family: 'Darumadrop One';
}