/* Globals */
/* Colors */
/* Z Indexes */
/* Font Styles */
/* Icons */
.keyboard-center {
  margin-left: 15%;
}

.auth-keyboard {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  padding: 22px 0;
  box-shadow: 0 0 50px #2A3139;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: transform 0.4s;
  transform: translateX(-50%);
  background-color: #2A3139;
}

.keyboard--hidden {
  transform: translateY(100%);
}

.keys {
  text-align: center;
}

.key {
  height: 45px;
  width: 6%;
  max-width: 90px;
  margin: 3px;
  border-radius: 4px;
  border: none;
  background: #343C45;
  color: #ffffff;
  font-size: 1.755rem;
  outline: none;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  vertical-align: top;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.highlighted {
  background: #ffffff;
  color: #343C45;
}

.redlighted {
  background: #E42D44;
}

.key:active {
  background: rgba(255, 255, 255, 0.12);
}

.key--wide {
  width: 12%;
}

.key--extra-wide {
  width: 36%;
  max-width: 500px;
}

.key--activatable::after {
  content: "";
  top: 10px;
  right: 10px;
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.key--active::after {
  background: #08ff00;
}

.key--dark {
  background: rgba(0, 0, 0, 0.25);
}

.row__hide {
  display: none;
}

.key_dotcom,
.key_gmail,
.key_hotmail,
.key-enter {
  height: 45px;
  width: 25%;
  max-width: 292px;
  font-size: 23.0769230769px;
  cursor: pointer;
}

.key-spacebar {
  height: 45px;
  width: 24.2%;
  max-width: 400px;
}

.key-spacebar img {
  width: 76.9230769231px;
}

.key-backspace img {
  width: 53.8461538462px;
}

.key-command:active {
  background: rgba(0, 0, 0, 0.3);
}

.key-command img {
  width: 23.0769230769px;
}

.key-enter {
  font-size: 24.6153846154px;
  border-radius: 6.1538461538px;
}

.enterhighlighted {
  background: #ffffff;
  color: #343C45;
}

#auth-user {
  position: relative;
}

.input-focus::after {
  content: "|";
  position: absolute;
  color: rgb(253, 252, 252);
}

input.auth-input {
  caret-color: transparent;
}

.auth-input-blinking {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}