/* Password visibility controls and the compact authentication form layout. */
.input-container {
  width: 100%;
  margin-bottom: 1em;
}

.login-input input:not([type="checkbox"]) {
  width: 100%;
  box-sizing: border-box;
}

.password-container {
  position: relative;
  width: 100%;
}

.password-container input {
  width: 100%;
  padding-right: 2.5em;
  box-sizing: border-box;
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  color: #888;
}
