/* 2FA Modal Input Group Styling */
.twofa-input-group {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  margin-bottom: 1em;
}

.styled-digit-input {
  width: 1.6em;
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  padding: 0.3em 0;
}
.styled-digit-input:focus {
  border-color: #00e6e6;
  box-shadow: 0 0 0 2px #00e6e633;
}

.twofa-feedback {
  min-height: 1.5em;
  text-align: center;
  font-size: 1em;
  margin-top: 0.5em;
}
