@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  height: 100%;
  background-image: url("../images/background.gif");
  background-repeat: repeat;
  background-color: #fff;
}
h2{
  font-weight: 300;
}
button:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: rgba(20, 20, 20, 0.65);
}

::-webkit-input-placeholder .input-line:focus +::input-placeholder {
  color: #000;
}

.highlight {
  color: rgba(20, 20, 20, 0.65);
  font-weight: 400;
  cursor: pointer;
  transition: color .2s ease;
}

.highlight:hover {
  color: #fff;
  transition: color .2s ease;
}

.input-line:focus {
  outline: none;
  border-color: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.ghost-round {
  cursor: pointer;
  background: none;
  border: 1px solid #004473;
  border-radius: 25px;
  color: #004473;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 19px;
  font-size: 1.2rem;
  font-family: roboto;
  font-weight: 300;
  line-height: 2.5em;
  margin-top: auto;
  margin-bottom: 25px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.ghost-round:hover {
  background: #004473;
  color: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.input-line {
  background: none;
  margin-bottom: 10px;
  line-height: 2.4em;
  color: #000;
  font-family: roboto;
  font-weight: 300;
  letter-spacing: 0px;
  letter-spacing: 0.02rem;
  font-size: 19px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.65);
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.input-fields {
  margin-top: 25px;
}

/**
 * Forms
 */
.form-input {
  display: block;
  position: relative;
  margin-bottom: 1rem;
}
.form-input > .material-icons {
  position: absolute;
  font-size: 1.5rem;
  top: 1.2rem;
}
.form-input > .material-icons ~ input, .form-input > .material-icons ~ .label, .form-input > .material-icons ~ .underline {
  margin-left: 2.25rem;
  width: calc(100% - 2.25rem);
}

.notification{
  font-size: 1.15em;
}

.banner{
  background: #000;
}