:root {
  --primary-color: #6a5acd;
  --body-bg: #ffffff;
  --text-color: #212529;
  --text-muted: #6c757d;
  --form-bg: #f8f9fa;
  --border-color: #dee2e6;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--body-bg);
  color: var(--text-color);
}

.login-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
}

.login-illustration-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.login-illustration-side .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  align-self: flex-start;
}

.login-illustration-side svg {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
}

.login-form-side {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}

.login-form-container {
  width: 100%;
  max-width: 400px;
}

.login-form-container h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.login-form-container .text-muted {
  margin-bottom: 2.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  background-color: var(--form-bg);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.password-wrapper {
  position: relative;
}

.password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-muted);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .login-illustration-side {
    display: none;
  }

  .login-form-side {
    padding: 1.5rem;
  }
}
