body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-family: "Times New Roman", Times, serif;
  color: #000;
}

.center-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-title {
  margin-bottom: 24px;
  font-weight: normal;
  font-size: 20px;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.login-input {
  width: 200px;
  padding: 6px 8px;
  border: 1px solid #000;
  outline: none;
  font-size: 16px;
}

.login-btn {
  width: 80px;
  padding: 4px 0;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.login-btn:hover {
  opacity: 0.9;
}

.login-register {
  margin-top: 10px;
  font-size: 16px;
}

.login-register a {
  color: blue;
  text-decoration: none;
}

.login-errors {
  color: red;
  font-size: 14px;
  margin-bottom: 10px;
}

.main-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #222;
  font-size: 16px;
  background: #fff;
  z-index: 10;
  padding: 10px 0;
}
