.password-auth-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.password-auth-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  background: #f5f5f5;
}

.password-auth-container .header .cancel {
  color: #07c160;
  font-size: 16px;
  cursor: pointer;
}

.password-auth-container .header .title {
  font-size: 17px;
  font-weight: 600;
  color: #000;
}

.password-auth-container .header .placeholder {
  width: 40px;
}

.password-auth-container .content {
  padding: 40px 20px;
  text-align: center;
}

.password-auth-container .subtitle {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
}

.password-auth-container .password-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.password-auth-container .password-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e5e5;
  transition: background 0.2s;
}

.password-auth-container .password-dots .dot.active {
  background: #000;
}

.password-auth-container .error-msg {
  font-size: 12px;
  color: #fa5151;
  height: 20px;
  line-height: 20px;
  transition: opacity 0.2s;
}

.password-auth-container .keyboard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f5f5;
  padding-bottom: env(safe-area-inset-bottom);
}

.password-auth-container .keyboard-row {
  display: flex;
  border-top: 1px solid #e5e5e5;
}

.password-auth-container .keyboard-row .key {
  flex: 1;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #000;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.password-auth-container .keyboard-row .key:active {
  background: #e5e5e5;
}

.password-auth-container .keyboard-row .key.empty {
  background: #f5f5f5;
  cursor: default;
}

.password-auth-container .keyboard-row .key.empty:active {
  background: #f5f5f5;
}

.password-auth-container .keyboard-row .key.delete {
  display: flex;
  justify-content: center;
  align-items: center;
}

.password-auth-container .keyboard-row .key.delete:active {
  background: #e5e5e5;
}