/*
 * Green Ash Partners — login skin (Kognato v1)
 * --------------------------------------------
 * Source material: logo only. Palette anchored on the forest-green sampled
 * directly off the logo leaves (#1A5F38). Secondary derived as a muted
 * complementary olive — the v1 default --secondary-500 / --acents-1-500
 * tokens aren't referenced anywhere outside :root, so these are visually
 * inactive but kept on-brand for consistency.
 *
 * Palette substitutions vs. the v1 default (Flanks blue #3972FF):
 *   --principal-650  #2850b3 -> #0E3D24   (darker forest)
 *   --principal-500  #3972ff -> #1A5F38   (primary — sampled off the logo)
 *   --principal-450  #4c80ff -> #2D8A4D
 *   --principal-300  #88aaff -> #7DB58A
 *   --principal-150  #c3d4ff -> #D5E8DA
 *   --secondary-500  #aea693 -> #8A9B5C   (muted olive accent)
 *   --acents-1-500   #b7b09c -> #A0B073
 *
 * Logo assets (replaced):
 *   /Custom/Content/logo_login.png     -> Green Ash wordmark + tree mark
 *   /Custom/Content/logo_menu.png      -> Green Ash wordmark + tree mark
 *   /Custom/Content/logo_dashboard.png -> Green Ash wordmark + tree mark
 */

:root {
  --principal-650: #0E3D24;
  --principal-500: #1A5F38;
  --principal-450: #2D8A4D;
  --principal-300: #7DB58A;
  --principal-150: #D5E8DA;
  --secondary-500: #8A9B5C;
  --acents-1-500: #A0B073;
  --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;
  }
}
