html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.87);
  min-height: 100%;
}
body {
  background: #f5f5f5;
  margin: 0;
  min-height: 100%;
}
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
}
.card-panel {
  animation-name: fade;
  animation-duration: 0.25s;
  background: white;
  position: relative;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}
main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 16px;
  min-height: 80%;
  min-height: calc(100% - 82px);
}
footer {
  width: 100%;
  height: 50px;
  margin-top: 16px;
  position: relative;
}
.unwired_logo {
  width: 68px;
  bottom: 0;
  right: 10%;
  position: absolute;
}
@media screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .unwired_logo {
    bottom: auto;
  }
}
.flow-text {
  font-size: 1.15rem;
}
@media only screen and (min-width: 600px) {
  .flow-text {
    font-size: 1.35rem;
  }
}
.btn:hover {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.24);
}
.btn:active {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
  background-color: #9cb23bf0;

}
.btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: box-shadow 0.25s;
  background-color: #9cb23b;
  border-radius: 36px;
  border: none;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.12);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  height: 40px;
  line-height: 36px;
  outline: none;
  padding: 0 16px;
  text-transform: uppercase;
  transition: box-shadow 0.25s;
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
