.auth-body {
  min-height: 100vh;
  background: url('/assets/img/login-bg.jpg') center/cover no-repeat fixed;
  padding-bottom: 0 !important;
}

.auth-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.auth-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
}

.auth-form-side {
  width: 460px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.auth-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.auth-link {
  color: var(--green-500);
  font-weight: 600;
}

.auth-link:hover {
  color: var(--green-600);
}

@media (max-width: 768px) {
  .auth-layout {
    justify-content: center;
    padding: 16px;
  }
  .auth-form-side {
    width: 100%;
  }
  .auth-card {
    padding: 24px;
  }
}
