* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0C090D;
  color: #FCFAFA;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 {
  margin: 1em 0;
}

h3 {
  margin: 1em 0;
  font-size: 1.2em;
}

a {
  color: #1B98E0;
}

a:visited {
  color: inherit;
}

.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 4em;
}

.logo span {
  color: #1B98E0;
}

form {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80vw;
}

input {
  background-color: inherit;
  border: #FCFAFA 2px solid;
  border-radius: 5px;
  padding: 1em;
  color: #FCFAFA;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.30s ease-in-out;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
}

input:focus, input:hover {
  box-shadow: 0 0 5px #1B98E0;
  border-color: #1B98E0;
}

button {
  margin: 1em 0;
  background-color: inherit;
  color: #FCFAFA;
  padding: 1em;
  border: #FCFAFA 2px solid;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.30s ease-in-out;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
}

button:hover {
  box-shadow: 0 0 5px #1B98E0;
  border-color: #1B98E0;
  color: #1B98E0;
  cursor: pointer;
}

#formResponse {
  font-size: 1.3em;
}

.fail {
  color: #E01A4F;
}

.success {
  color: #0CCA4A;
}