.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-family: monospace;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
  border: 8px solid #222222;
}

.form-group {
  margin-bottom: 1.5rem;
}
label {
  display: block;
  margin-bottom: 0.25rem;
  color: #222;

  font-weight: bold;
}
input[type="email"],
input[type="password"],
input[type="text"]#password {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 4px;
  background: #222;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  font-family: inherit;
  letter-spacing: 0.05em; /* Adjust to match your password field's default */
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]#password:focus {
  outline: none;
  border-color: #fff;
}
button[type="submit"] {
  width: 100%;
  padding: 1rem;
  margin-top: 1em;
  background: #222;
  color: #fff;
  border: 4px solid #222;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: #fff;
  color: green;;
  border: 4px solid green;
}
.show-password {
  margin-top: 8px;
  display: flex;
  align-items: center;
  font-size: 0.95em;
}
.show-password input[type="checkbox"] {
  margin-right: 6px;
  accent-color: #007bff;
}

input[type="password"],
input[type="text"]#password {
  font-family: inherit;
  letter-spacing: 0.05em; /* Adjust to match your password field's default */
  font-size: 1em;
  box-sizing: border-box;
}