* {
  box-sizing: border-box;
  outline: 0;
}

html,
body {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  height: 100%;
  margin: 0;
  color: #333;
}

a {
  text-decoration: none;
  color: #909090;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

button {
  background-color: #025687;
  color: #fff;
  border: none;
  padding: 0 15px;
  height: 38px;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
  display: inline-block;
}

.tc {
  text-align: center;
}

.mt15 {
  margin-top: 15px;
}

.mv25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.layout-centered {
  display: flex;
  height: 100%;
  width: 100%;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box {
  border: 1px solid #dadce0;
  border-radius: 5px;
  min-width: 430px;
  overflow: hidden;
}

.box-heading {
  background-color: #f6f6f6;
  border-bottom: 1px solid #dadce0;
  color: #6f6f6f;
  padding: 15px;
  margin: 0;
  font-weight: normal;
}

.wakeup-form {
  padding: 20px;
}

.text-light {
  color: #999;
}

.text-heading {
  font-size: 120%;
}

.submit-button {
  position: relative;
  z-index: 0;
}

.spinner-container {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  transform: translate(-50%, -50%);
  border: 2px solid #b6c0c5;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
