.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
.login-card {
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
  text-align: center;
}
.login-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.login-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.back-btn {
  /* position: absolute; */
  padding: 0.5rem 1rem;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.back-btn:hover {
  color: var(--text-main);
}
