.login-center {

  /* Center vertically and horizontally */

  position: absolute; /* Allows precise positioning */

  top: 50%; /* Set the top position to the middle of the parent container */

  left: 50%; /* Set the left position to the middle of the parent container */

  transform: translate(-50%, -50%); /* Move the element back by 50% of its own width and height */

}
.action-button {
  background-color: black;
  color: green;
  border: 2px solid #382418;
  padding: 2px;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  width: 76px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
}

.action-button:hover {
  background-color: #382418;
}

button.action-button {
  border-radius: 4px;
}

a.action-button {
  border-radius: 4px;
  line-height: 1.5;
}

.general-button {
  background-color: black;
  color: green;
  border: 2px solid #382418;
  padding: 7px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
}

.general-button:hover {
  background-color: #382418;
}

button.general-button {
  border-radius: 4px;
}