#username {
  width: 100%;
  max-width: 300px;
  height: 40px;
  border: 2px solid #1c1c1c;
  background-color: black;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 16px;
  color: white;
  margin-top: 8px;
}

label {
  color: white;
  font-size: 16px;
}

.verify-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 40px;
  margin-top: 8px;
  /* max-width: 300px; */
  justify-content: space-between;
  align-items: center;
}

.verify-row button {
  width: 100px;
  height: 40px;
  border: 2px solid #1c1c1c;
  background-color: black;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 16px;
  color: white;
}

.verify-row button:hover {
  background-color: #1c1c1c;
  cursor: pointer;
}

#verify-result {
  font-size: 16px;
  text-align: left;
  margin-left: 12px;
}

.verify-success {
  color: rgb(12, 155, 12);
}

.verify-success::before {
  content: "✔ ";
  display: inline-block;
}

.verify-fail {
  color: rgb(255, 0, 0);
}

.verify-fail::before {
  content: "✖  ";
  display: inline-block;
}

label span {
  font-size: 12px;
  display: block;
}
