/*
 * Kimpa Impact Family Office — login skin (Kognato v1)
 * ----------------------------------------------------
 * Palette substitutions vs. the v1 default (Flanks blue #3972FF):
 *   --principal-650  #2850b3  ->  #061D24   (darker primary, hover/active)
 *   --principal-500  #3972ff  ->  #0C343D   (primary — CTA, accents)
 *   --principal-450  #4c80ff  ->  #45818E   (mid teal from supplied palette)
 *   --principal-300  #88aaff  ->  #88B5BE   (light derived)
 *   --principal-150  #c3d4ff  ->  #D0E0E3   (lightest tint from palette)
 *   --secondary-500  #aea693  ->  #F1C232   (yellow accent from supplied palette)
 *   --acents-1-500   #b7b09c  ->  #999999   (neutral gray accent)
 *
 * Logo assets (replaced):
 *   /Custom/Content/logo_login.png    -> Kimpa wordmark + tree mark
 *   /Custom/Content/logo_menu.png     -> Kimpa wordmark + tree mark
 *   /Custom/Content/logo_dashboard.png-> Kimpa wordmark + tree mark
 */

:root {
  --principal-650: #061D24;
  --principal-500: #0C343D;
  --principal-450: #45818E;
  --principal-300: #88B5BE;
  --principal-150: #D0E0E3;
  --secondary-500: #F1C232;
  --acents-1-500: #999999;
  --neutral-950: #0e0e0e;
  --neutral-750: #464646;
  --neutral-600: #707070;
  --neutral-500: #8c8c8c;
  --neutral-250: #c6c6c6;
  --neutral-100: #e8e8e8;
  --neutral-50: #f3f3f3;
  --neutral-25: #f9f9f9;
  --neutral-0: #ffffff;
  --success-500: #5cb37f;
  --success-150: #cee8d8;
  --warning-500: #e8a359;
  --warning-150: #f8e3cd;
  --error-500: #d8544d;
  --error-150: #f3cbc9;
}

body {
  background-color: var(--neutral-50) !important;
  color: var(--neutral-950) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

form.form-horizontal {
  background-image: url('/Custom/Content/logo_login.png');
  background-size: contain;
  background-repeat: no-repeat;
}

img.logo {
  visibility: hidden;
}

img {
  margin-bottom: 24px;
}

a {
  color: var(--neutral-950);
}

a:hover {
  text-decoration: underline !important;
  color: var(--neutral-950) !important;
}

label {
  color: var(--neutral-950);
}

#loginForm {
  background-color: white;
  margin: 120px auto;
  padding: 40px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  width: 450px;
}

.form-control {
  border: none;
  box-shadow: none;
  border: 1px solid var(--neutral-250);
  border-radius: 4px;
}

#submit-btn {
  background-color: var(--principal-500);
  color: white;
  border: none;
}

#RememberMe {
  accent-color: var(--principal-500);
}

@media (max-width: 680px) {
  #loginForm {
    min-width: 85vw;
    padding: 24px;
  }
}
