/* -- BRAND -- */

.brand-accent {
  color: rgba(230, 55, 37, 0.8);
}

.logo-wrap {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.logo-wrap img {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto;
}

/* -- ACTIONS -- */

.auth-action,
.account-submit {
  background-color: #fd3f5c;
  background-size: auto;
}

.footer-text {
  margin-bottom: 0;
}

.auth-footer {
  margin-top: auto;
  padding: 20px 0 0;
}

/* -- KEYBOARD -- */

.keyboard {
  position: relative;
}

.login-page .keyboard {
  left: 55%;
  width: 250px;
  margin: 0 auto;
  transform: translateX(-80%);
}

.keyboard-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.keyboard-key {
  display: inline-flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #4c4c4c;
  border-radius: 50%;
  background-color: transparent;
  color: #4b4a4acc;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 300ms linear;
}

.login-page .keyboard-key {
  margin-right: 5px;
}

.register-page .keyboard-key {
  margin-right: 20px;
}

.keyboard-key:hover,
.keyboard-key:focus {
  background-color: rgba(230, 55, 37, 0.4);
  outline: none;
}

.keyboard-clear {
  width: 100%;
  margin: 10px 0;
}

.password-error {
  margin-top: 10px;
}

.auth-lock-icon {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
}
