body.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f1f1f1;
  font-family: Arial, sans-serif;
}

.login-container {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.login-header {
  margin-bottom: 20px;
  text-align: center;
}

.login-form p {
  margin-bottom: 15px;
}

.login-form input {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.login-button {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}

.login-button:hover {
  background-color: #2980b9;
}

.login-footer {
  margin-top: 15px;
  text-align: center;
}

.login-link {
  color: #2980b9;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}

.login-message {
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.login-message.error {
  background-color: #f8d7da;
  color: #842029;
}
.login-message.success {
  background-color: #d1e7dd;
  color: #0f5132;
}
main.content-wrapper {
  background: none;
  box-shadow: none;
  padding: 0;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
