.screenshot {
  margin: 2rem auto;
  max-width: 90%;
  display: block;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
}

footer {
  margin-top: auto;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  background-color: var(--secondary-color);
}


.login-body {
  margin: 0;
  background-color: #0d0d0d;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.login-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-box {
  background-color: #1a1a1a;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.login-box h2 {
  color: #ffc107;
  margin-bottom: 24px;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #ffc107;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  color: #111;
  margin-top: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-box button:hover {
  background-color: #e0a800;
}

.register-link {
  margin-top: 16px;
  font-size: 14px;
  color: #ccc;
}

.register-link a {
  color: #ffc107;
  text-decoration: none;
}
