body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.login-wrapper {
  background-color: var(--bs-body-bg);
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 400px;
}

.login-wrapper h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-control {
  background-color: var(--bs-body-bg);
  border: 1px solid #444;
  color: var(--bs-body-color);
}

.form-control:focus {
  border-color: #5c9ded;
  box-shadow: 0 0 0 0.2rem rgba(92, 157, 237, 0.25);
}

.btn-primary {
  background-color: #5c9ded;
  border: none;
}

.btn-primary:hover {
  background-color: #4a8ae0;
}

.form-text {
  text-align: center;
  color: #bbb;
  margin-top: 1rem;
}

#themeToggle {
  border-radius: 50px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
