/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.background {
  background: #111;
  font-family: Arial, sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Wrapper */
.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}

/* Box */
.auth-box {
  background: #1c1c1c;
  padding: 40px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.auth-box h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
}

.auth-box .highlight {
  color: #ff4a17;
}

/* Form Fields */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid #444;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

/* Button */
.auth-btn {
  width: 100%;
  padding: 12px;
  background: #ff4a17;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.auth-btn:hover {
  background: #e44310;
}

/* Footer */
.auth-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.auth-footer a {
  color: #ff4a17;
  text-decoration: none;
}
.auth-footer a:hover {
  text-decoration: underline;
}
.sitename {
  color: #fff;
  display: block;
  margin: 0 auto 2rem auto;  /* boven 0, onder 2rem, links/rechts automatisch centreren */
  width: max-content;
  text-align: center;        /* zorgt ervoor dat inhoud zoals <span> ook gecentreerd is */
  font-size: 26px;
}
.label {
  font-size: 14px;
}
.successmessage {
  color: #2fb553;
}
.errormessage {
  font-size: 14px;
  text-align: center;
  margin-bottom: 5px;
}
.auth-box .forgotpass {
  display: block;
  text-align: right;
  margin-top: 3px;
  font-size: 14px;
}