/* =========================
   Desktop Login Page Layout
   ========================= */

/* Full page layout: split into 30% left, 70% right */
.desktopLoginPage {
  display: flex;
  min-height: 100vh;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  overflow: hidden;
}

/* -------------------------
   Left column (login form)
   ------------------------- */
.desktopLoginPage .desktopLogin-Left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 3rem;
  background: #fff;
  box-shadow: 4px 0 20px rgba(0,0,0,0.05);
  z-index: 2;
  height: auto;
}

.desktopLoginPage .desktopLogin-Logo {
  margin: 0 auto 2rem auto;
  max-width: 200px;
  text-align: center;
}

.desktopLoginPage .desktopLogin-Logo img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Login card */
.desktopLoginPage .desktopLogin-Card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 380px;
  margin: 0 auto;
  padding-top: 1rem;
}

.desktopLoginPage .desktopLogin-Title {
  margin-bottom: 0.5rem;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.desktopLoginPage .signup-text {
  text-align: center;
  font-size: 14px;
  margin-bottom: 2rem;
  color: #374151;
}

.desktopLoginPage .signup-link {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}
.desktopLoginPage .signup-link:hover {
  text-decoration: underline;
}

/* -------------------------
   Input labels with icons
   ------------------------- */
.desktopLoginPage .login-label.with-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.desktopLoginPage .login-label.with-icon i {
  color: #2563eb;
}

/* Input fields */
.desktopLoginPage .ic-Input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  background: #f9fafb;
  transition: all 0.2s ease;
}
.desktopLoginPage .ic-Input:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
}

/* Password wrapper */
.desktopLoginPage .password-input-wrapper {
  position: relative;
}
.desktopLoginPage .toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  font-size: 16px;
  cursor: pointer;
}
.desktopLoginPage .toggle-password:hover {
  color: #2563eb;
}

/* -------------------------
   Primary Button
   ------------------------- */
.desktopLoginPage .Button--primary {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}

.desktopLoginPage .Button--primary:hover {
  background: linear-gradient(90deg, #1d4ed8, #1e40af);
  transform: translateY(-1px);
}

/* -------------------------
   Login Options
   ------------------------- */
.desktopLoginPage .login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: -0.5rem;
  margin-bottom: 1.2rem;
}
.desktopLoginPage .remember-me label {
  margin-left: 0.3rem;
}

/* Forgot password container */
.desktopLoginPage .login-options .forgot-password {
  text-align: right;
  color: black;
}

/* Force link visible and styled */
.desktopLoginPage .login-options .forgot-password a.ic-Login__link {
  display: inline !important;   /* override Canvas hiding */
  font-size: 13px;
  color: #2563eb !important;    /* stronger color */
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Hover effect */
.desktopLoginPage .login-options .forgot-password a.ic-Login__link:hover {
  text-decoration: underline !important;
  color: #1d4ed8 !important;
}


/* -------------------------
   Footer
   ------------------------- */
.desktopLoginPage .desktopLogin-Footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

.desktopLoginPage .custom-footer {
  margin-top: auto;
  text-align: center;
  padding: 1rem 0;
  background: transparent;
}

.desktopLoginPage .footer-text {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
}

.desktopLoginPage .footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.desktopLoginPage .social-link {
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
}
.desktopLoginPage .social-link.linkedin { color: #0077b5; }
.desktopLoginPage .social-link.website { color: #2563eb; }
.desktopLoginPage .social-link.instagram { color: #e1306c; }
.desktopLoginPage .social-link.youtube { color: #ff0000; }

.desktopLoginPage .social-link:hover {
  transform: translateY(-2px);
}
.desktopLoginPage .social-link.linkedin:hover { color: grey; }
.desktopLoginPage .social-link.website:hover { color: grey; }
.desktopLoginPage .social-link.instagram:hover { color: grey; }
.desktopLoginPage .social-link.youtube:hover { color: grey; }

/* Remove external link arrow from website link */
.desktopLoginPage .social-link.website::after {
  content: none !important;
  display: none !important;
}

.footer-links {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #2563eb;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

.footer-follow {
  margin-bottom: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-align: center;
}

/* -------------------------
   Right column (Lottie animation)
   ------------------------- */
.desktopLoginPage .desktopLogin-Right {
  flex: 0 0 70%;
  display: flex;
  align-items: center;       /* vertical center inside container */
  justify-content: center;   /* horizontal center */
  background: linear-gradient(135deg, #eef3ff, #dbeafe);
  height: auto;              /* allow height to match left container */
  min-height: 100%;
  position: relative;
}

#login-animation {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Lottie animation wrapper */
.desktopLoginPage #login-animation {
  max-width: 100%;           /* fill width of right container */
  max-height: 100%;          /* fill height of right container */
  display: block;
  margin: auto;
}

/* Lottie player itself */
.desktopLoginPage #login-animation lottie-player {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* keep aspect ratio */
}

/* -------------------------
   Responsive
   ------------------------- */
/* @media (max-width: 768px) {
  .desktopLoginPage {
    flex-direction: column;
  }
  .desktopLoginPage .desktopLogin-Left,
  .desktopLoginPage .desktopLogin-Right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .desktopLoginPage .desktopLogin-Right {
    order: -1;
    height: 220px;
    align-items: center;
    padding-top: 0;
  }
  .desktopLoginPage #login-animation {
    width: 100%;
    height: 100%;
  }
} */