body {
  background-color: #FEFBF4;
  color: #003a27;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  width: 100%;
}

.logo {
  text-align: center;
  margin-bottom: 0;
}

.logo img {
  max-width: 300px;
  height: auto;
}

hr {
  border: none;
  border-top: 2px solid #a48d55;
  width: 375px;
  margin: 12px auto 24px auto;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 0;
}

input[type="text"],
input[type="password"],
button {
  width: 300px;
  height: 40px;
  padding: 10px;
  border: 1px solid #b0b0b0;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 0;
}

button {
  background-color: #2b2a26;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

button:hover {
  background-color: #1f1f1c;
}

#error-message {
  color: red;
  visibility: hidden;
  text-align: center;
  margin-bottom: 10px;
}

.footer-text {
  text-align: center;
  font-size: 12px;
  margin-top: 12px;
  color: #000000;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .page-wrapper {
    padding-top: 30px;
  }

  .logo img {
    max-width: 250px;
    height: auto;
  }

  hr {
    width: 250px;
    margin: 12px auto 20px auto;
  }

  input[type="text"],
  input[type="password"],
  button {
    width: 90%;
    max-width: 300px;
  }

  .footer-text {
    margin-top: 12px;
  }
}
