body {
  background-color: #0a0a0a;
  color: #eeeeee;
  font-family: 'Sora', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background-color: #111;
  padding: 40px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 187, 51, 0.2);
}

.login-logo {
  width: 80px;
  margin-bottom: 20px;
}

h2 {
  color: #ffbb33;
  margin-bottom: 20px;
}

label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
  margin-bottom: 15px;
  background-color: #222;
  color: #fff;
}

.login-button {
  background-color: #ffbb33;
  color: #000;
  font-weight: bold;
  margin-top: 40px; 
  margin-bottom: 40px; 
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  text-decoration: none;
}

.login-button:hover {
  background-color: #ffaa00;
  text-decoration: none;
}

.login-links {
  margin-top: 15px;
  font-size: 0.9rem;
}

.login-links a {
  color: #ffbb33;
  text-decoration: none;
  margin: 0 5px;
}

.login-links a:hover {
  text-decoration: underline;
}

.error-button {
  display: inline-block;
  margin-top: 60px;
  max-width: 100%;
  box-sizing: border-box;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-top: 20px;
  color: #dddddd;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ffbb33;
  border-radius: 3px;
  margin-right: 10px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: "\2713";
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 3px;
}

.checkbox-label a {
  color: #ffbb33;
  text-decoration: none;
  margin-left: 5px;
}

.checkbox-label a:hover {
  text-decoration: underline;
}


