/**
 * Company login + register — interactive auth UI
 * Scoped under body.lkit-company-auth
 */
body.lkit-company-auth{
  --auth-navy:#2e4056;
  --auth-blue:#2f94d7;
  --auth-pink:#ff4d9a;
  --auth-lavender:#c084fc;
  --auth-ink:#1b2430;
  --auth-muted:#5b6777;
  --auth-pink-grad:linear-gradient(90deg,#ff4d9a 0%,#e879f9 55%,#c084fc 100%);
  --auth-btn-radius:8px;
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255,77,154,.12), transparent 50%),
    radial-gradient(ellipse 60% 45% at 100% 10%, rgba(47,148,215,.14), transparent 48%),
    linear-gradient(180deg,#f7f9fc 0%,#eef3f9 100%);
  color:var(--auth-ink);
}
body.lkit-company-auth .lkit-auth{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
body.lkit-company-auth .lkit-auth *,
body.lkit-company-auth .lkit-auth *::before,
body.lkit-company-auth .lkit-auth *::after{box-sizing:border-box}

/* Top bar — match site navy header so white logo stays visible */
body.lkit-company-auth .lkit-auth-top{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:.85rem 1.25rem;
  background:#2e4056;
  border-bottom:none;
  box-shadow:0 1px 0 rgba(255,77,154,.35);
}
body.lkit-company-auth .lkit-auth-top .logo{
  float:none!important;
  margin:0!important;
  text-align:left!important;
  padding:0!important;
}
body.lkit-company-auth .lkit-auth-top .logo a{color:#fff}
body.lkit-company-auth .lkit-auth-top .logo img{
  height:36px;
  width:auto;
  display:block;
}
body.lkit-company-auth .lkit-auth-top__link{
  font-size:.85rem;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  padding:.4rem .85rem;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.45);
  background:transparent;
  transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
body.lkit-company-auth .lkit-auth-top__link:hover{
  color:#fff;
  border-color:transparent;
  background:linear-gradient(135deg,#ff4d9a,#2f94d7);
  transform:translateY(-1px);
}

/* Shell */
body.lkit-company-auth .lkit-auth-shell{
  flex:1;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:1.75rem 1rem 2.5rem;
  float:none!important;
}
body.lkit-company-auth .form-wrap{
  float:none!important;
  width:100%!important;
  margin:0!important;
  text-align:left!important;
  padding:0!important;
}
body.lkit-company-auth .form-wrap > .container{
  max-width:100%!important;
  width:100%!important;
  padding:0!important;
  float:none!important;
}

/* Promo strip (login) */
body.lkit-company-auth .company-title-header{
  border-radius:16px;
  margin:0 0 1.25rem;
  overflow:hidden;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(255,77,154,.35), transparent 55%),
    linear-gradient(135deg,#236BA2 0%,#2e4056 45%,#3a2a5c 100%)!important;
  box-shadow:0 14px 32px rgba(21,40,70,.15);
}
body.lkit-company-auth .company-title-header .small-12{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:.85rem 1.25rem;
  padding:1.1rem 1.25rem!important;
}
body.lkit-company-auth #text-banner{
  font-size:clamp(.95rem,2.5vw,1.15rem)!important;
  font-weight:600!important;
  color:#fff!important;
  line-height:1.4;
}
body.lkit-company-auth .company-title-header .share_btn .btn{
  border:1px solid rgba(255,255,255,.45)!important;
  background:rgba(255,255,255,.12)!important;
  color:#fff!important;
  border-radius:var(--auth-btn-radius)!important;
  font-weight:600!important;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
body.lkit-company-auth .company-title-header .share_btn .btn:hover{
  background:linear-gradient(135deg,#ff4d9a,#c084fc)!important;
  border-color:transparent!important;
  transform:translateY(-2px);
  color:#fff!important;
}

body.lkit-company-auth .company-title{
  margin:0 0 1.15rem;
  text-align:left!important;
}
body.lkit-company-auth .company-title h1{
  margin:0;
  font-size:clamp(1.35rem,3vw,1.75rem)!important;
  font-weight:750;
  letter-spacing:-.02em;
  color:var(--auth-navy);
}
body.lkit-company-auth .lkit-auth-eyebrow{
  display:inline-block;
  margin:0 0 .45rem;
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:var(--auth-pink-grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Grid layouts */
body.lkit-company-auth .lkit-auth-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:1.5rem;
  align-items:start;
}
body.lkit-company-auth .lkit-auth-grid--login{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
}
body.lkit-company-auth .company-register .row{
  display:flex;
  flex-wrap:wrap;
  margin:0 -12px;
}
body.lkit-company-auth .company-register .row > [class*="col-"]{
  padding-left:12px;
  padding-right:12px;
}

/* Form card */
body.lkit-company-auth .form-box{
  position:relative;
  overflow:hidden;
  border-radius:20px!important;
  background:#fff!important;
  border:1px solid rgba(46,64,86,.08)!important;
  box-shadow:0 18px 40px rgba(21,40,70,.1)!important;
  transition:transform .28s ease, box-shadow .28s ease;
}
body.lkit-company-auth .form-box:hover{
  box-shadow:0 22px 48px rgba(21,40,70,.14)!important;
}
body.lkit-company-auth .form-box:before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;
  height:3px;
  background:var(--auth-pink-grad);
  pointer-events:none;
}
body.lkit-company-auth .login-form-box,
body.lkit-company-auth .forgotpass-form-box{
  max-width:none!important;
  margin:0!important;
  width:100%!important;
}
body.lkit-company-auth .form-top{
  padding:1.35rem 1.35rem .35rem!important;
  background:transparent!important;
  text-align:left!important;
  float:none!important;
}
body.lkit-company-auth .form-top h1{
  font-size:clamp(1.2rem,2.5vw,1.45rem)!important;
  font-weight:750!important;
  color:var(--auth-navy)!important;
  margin:0!important;
}
body.lkit-company-auth .form-top p{
  margin:.4rem 0 0!important;
  color:var(--auth-muted)!important;
  font-size:.92rem!important;
}
body.lkit-company-auth .form-bottom{
  padding:1rem 1.35rem 1.5rem!important;
  background:transparent!important;
  border-radius:0!important;
  float:none!important;
}
body.lkit-company-auth .form-box .form-group{
  margin-bottom:1rem;
  text-align:left;
}
body.lkit-company-auth .form-box .form-control,
body.lkit-company-auth .form-box select.form-control{
  height:48px!important;
  border-radius:10px!important;
  border:1.5px solid rgba(46,64,86,.12)!important;
  background:#f7f9fc!important;
  padding:.65rem 1rem!important;
  font-size:.95rem!important;
  color:var(--auth-ink)!important;
  box-shadow:none!important;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}

/* Attractive labeled fields (login + reset) */
body.lkit-company-auth .lkit-auth-field{
  margin-bottom:1.15rem;
}
body.lkit-company-auth .lkit-auth-field__label{
  display:block;
  margin:0 0 .4rem;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--auth-muted);
}
body.lkit-company-auth .lkit-auth-field__control{
  position:relative;
  display:block;
}
body.lkit-company-auth .lkit-auth-field__icon{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:1.1rem;
  text-align:center;
  color:#8a96a8;
  font-size:.95rem;
  pointer-events:none;
  transition:color .2s ease;
}
body.lkit-company-auth .lkit-auth-field__control .form-control{
  height:52px!important;
  padding-left:2.65rem!important;
  border-radius:14px!important;
  border:1.5px solid rgba(46,64,86,.12)!important;
  background:
    linear-gradient(#f7f9fc,#f7f9fc) padding-box,
    linear-gradient(135deg,rgba(255,77,154,.35),rgba(47,148,215,.35)) border-box!important;
  border:1.5px solid transparent!important;
  box-shadow:
    0 1px 2px rgba(21,40,70,.04),
    inset 0 0 0 1px rgba(46,64,86,.06)!important;
  font-weight:500;
  letter-spacing:.01em;
}
body.lkit-company-auth .lkit-auth-field__control .form-control::placeholder{
  color:#9aa5b5;
  font-weight:500;
}
body.lkit-company-auth .lkit-auth-field__control:hover .form-control{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,rgba(255,77,154,.55),rgba(47,148,215,.55)) border-box!important;
  box-shadow:0 6px 18px rgba(47,148,215,.1)!important;
  transform:translateY(-1px);
}
body.lkit-company-auth .lkit-auth-field__control:hover .lkit-auth-field__icon{
  color:var(--auth-blue);
}
body.lkit-company-auth .lkit-auth-field__control .form-control:focus{
  outline:none!important;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#ff4d9a,#2f94d7) border-box!important;
  box-shadow:
    0 0 0 4px rgba(255,77,154,.12),
    0 10px 22px rgba(47,148,215,.12)!important;
  transform:translateY(-1px);
}
body.lkit-company-auth .lkit-auth-field__control:focus-within .lkit-auth-field__icon{
  color:var(--auth-pink);
}
body.lkit-company-auth .lkit-auth-field__control .form-control.error,
body.lkit-company-auth .lkit-auth-field__control .form-control.input-error{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#e35152,#ff7a7a) border-box!important;
  box-shadow:0 0 0 4px rgba(227,81,82,.12)!important;
}
body.lkit-company-auth .lkit-password-field{
  position:relative;
}
body.lkit-company-auth .lkit-password-field .form-control,
body.lkit-company-auth .lkit-auth-field .lkit-password-field .form-control{
  padding-right:2.85rem!important;
}
body.lkit-company-auth .lkit-password-toggle{
  position:absolute;
  top:50%;
  right:8px;
  transform:translateY(-50%);
  z-index:3;
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#7a8699;
  cursor:pointer;
  padding:0;
  line-height:1;
  transition:color .2s ease, background .2s ease, transform .2s ease;
}
body.lkit-company-auth .lkit-password-toggle:hover,
body.lkit-company-auth .lkit-password-toggle.is-visible{
  color:var(--auth-blue,#2f94d7);
  background:rgba(47,148,215,.12);
}
body.lkit-company-auth .lkit-password-toggle:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(47,148,215,.2);
}
body.lkit-company-auth .lkit-password-toggle.is-visible i{
  color:var(--auth-pink);
}
body.lkit-company-auth .form-box .form-control:hover{
  border-color:rgba(47,148,215,.35)!important;
  background:#fff!important;
}
body.lkit-company-auth .form-box .form-control:focus,
body.lkit-company-auth .form-box select.form-control:focus{
  outline:none!important;
  background:#fff!important;
  border-color:rgba(255,77,154,.55)!important;
  box-shadow:0 0 0 4px rgba(255,77,154,.12)!important;
  transform:translateY(-1px);
}
body.lkit-company-auth .form-box .form-control.input-error,
body.lkit-company-auth .form-box label.error + .form-control,
body.lkit-company-auth .form-box .form-control.error{
  border-color:#e35152!important;
}
/* Keep branded field shells from being overridden by generic input rules */
body.lkit-company-auth .lkit-auth-field__control .form-control,
body.lkit-company-auth .lkit-auth-field__control .form-control:hover,
body.lkit-company-auth .lkit-auth-field__control .form-control:focus{
  border:1.5px solid transparent!important;
}
body.lkit-company-auth .lkit-auth-field__control .form-control{
  background:
    linear-gradient(#f7f9fc,#f7f9fc) padding-box,
    linear-gradient(135deg,rgba(255,77,154,.35),rgba(47,148,215,.35)) border-box!important;
  box-shadow:
    0 1px 2px rgba(21,40,70,.04),
    inset 0 0 0 1px rgba(46,64,86,.06)!important;
}
body.lkit-company-auth .lkit-auth-field__control:hover .form-control,
body.lkit-company-auth .lkit-auth-field__control .form-control:hover{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,rgba(255,77,154,.55),rgba(47,148,215,.55)) border-box!important;
  box-shadow:0 6px 18px rgba(47,148,215,.1)!important;
  transform:translateY(-1px);
}
body.lkit-company-auth .lkit-auth-field__control .form-control:focus{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#ff4d9a,#2f94d7) border-box!important;
  box-shadow:
    0 0 0 4px rgba(255,77,154,.12),
    0 10px 22px rgba(47,148,215,.12)!important;
  transform:translateY(-1px);
}
body.lkit-company-auth .lkit-auth-field__control .form-control.error,
body.lkit-company-auth .lkit-auth-field__control .form-control.input-error{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg,#e35152,#ff7a7a) border-box!important;
  box-shadow:0 0 0 4px rgba(227,81,82,.12)!important;
}
body.lkit-company-auth .form-box label.error{
  color:#e35152;
  font-size:.78rem;
  margin-top:.25rem;
  display:block;
  text-align:left;
}
body.lkit-company-auth .form-box .forgot_password,
body.lkit-company-auth .form-box .forgot_password .remember{
  display:inline-block;
  font-size:.9rem!important;
  font-weight:700!important;
  color:var(--auth-blue, #2f94d7)!important;
  text-decoration:underline!important;
  text-underline-offset:3px;
  transition:color .2s ease;
}
body.lkit-company-auth .form-box .forgot_password:hover,
body.lkit-company-auth .form-box .forgot_password:hover .remember{
  color:var(--auth-navy, #2e4056)!important;
}
body.lkit-company-auth .form-bottom form button.btn,
body.lkit-company-auth .form-box .btn-primary{
  width:100%;
  height:48px;
  border:none!important;
  border-radius:var(--auth-btn-radius)!important;
  font-weight:700!important;
  font-size:1rem!important;
  letter-spacing:.02em;
  color:#fff!important;
  background:linear-gradient(135deg,#ff4d9a 0%,#c084fc 45%,#2f94d7 100%)!important;
  box-shadow:0 12px 26px rgba(255,77,154,.28);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
body.lkit-company-auth .form-bottom form button.btn:hover,
body.lkit-company-auth .form-box .btn-primary:hover{
  transform:translateY(-2px);
  filter:brightness(1.04);
  box-shadow:0 16px 32px rgba(255,77,154,.35);
  color:#fff!important;
}
body.lkit-company-auth .form-bottom form button.btn:active{
  transform:translateY(0);
}
body.lkit-company-auth .createA{
  margin-top:1.15rem!important;
  font-size:.95rem!important;
  color:var(--auth-muted);
}
body.lkit-company-auth .createA a{
  font-weight:700!important;
  color:#d946a0!important;
  font-size:inherit!important;
  text-decoration:none;
}
body.lkit-company-auth .createA a:hover{text-decoration:underline;color:var(--auth-blue)!important}

/* Benefits panel */
body.lkit-company-auth .lkit-auth-benefits,
body.lkit-company-auth .details{
  position:relative;
  overflow:hidden;
  text-align:left!important;
  padding:1.6rem 1.4rem!important;
  border-radius:20px;
  color:#fff;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255,77,154,.35), transparent 55%),
    linear-gradient(145deg,#2e4056 0%,#3a2a5c 48%,#236BA2 100%);
  box-shadow:0 18px 40px rgba(21,40,70,.16);
  min-height:100%;
}
body.lkit-company-auth .details h2,
body.lkit-company-auth .lkit-auth-benefits h2{
  margin:0 0 1rem!important;
  font-size:clamp(1.2rem,2.5vw,1.45rem)!important;
  font-weight:750!important;
  color:#fff!important;
  line-height:1.25;
}
body.lkit-company-auth .details ul,
body.lkit-company-auth .lkit-auth-benefits ul{
  list-style:none!important;
  margin:0 0 1.25rem!important;
  padding:0!important;
}
body.lkit-company-auth .details li,
body.lkit-company-auth .lkit-auth-benefits li{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  margin:0 0 .55rem!important;
  padding:.7rem .8rem!important;
  border:1px solid rgba(255,255,255,.12)!important;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  font-size:.9rem!important;
  line-height:1.4;
  color:rgba(255,255,255,.94)!important;
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}
body.lkit-company-auth .details li:hover,
body.lkit-company-auth .lkit-auth-benefits li:hover{
  transform:translateX(4px);
  background:rgba(255,255,255,.14);
  border-color:rgba(255,77,154,.35)!important;
}
body.lkit-company-auth .details li .fa,
body.lkit-company-auth .lkit-auth-benefits li .fa{
  flex:0 0 auto;
  margin:0!important;
  width:1.4rem;
  height:1.4rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  font-size:.75rem!important;
  color:#fff!important;
  background:linear-gradient(135deg,#ff4d9a,#2f94d7);
}
body.lkit-company-auth .details .book-btn,
body.lkit-company-auth .lkit-auth-benefits .book-btn{
  display:flex!important;
  flex-direction:column;
  align-items:flex-start;
  width:100%;
  padding:.85rem 1rem!important;
  border:1px solid rgba(255,255,255,.35)!important;
  border-radius:var(--auth-btn-radius)!important;
  background:rgba(255,255,255,.1)!important;
  color:#fff!important;
  text-decoration:none!important;
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
}
body.lkit-company-auth .details .book-btn:hover,
body.lkit-company-auth .lkit-auth-benefits .book-btn:hover{
  transform:translateY(-2px);
  background:linear-gradient(135deg,#ff4d9a,#2f94d7)!important;
  border-color:transparent!important;
  color:#fff!important;
}
body.lkit-company-auth .details .book-btn span,
body.lkit-company-auth .lkit-auth-benefits .book-btn span{
  font-size:.78rem;
  opacity:.85;
  font-weight:500;
}
body.lkit-company-auth .details .book-btn em,
body.lkit-company-auth .lkit-auth-benefits .book-btn em{
  font-style:normal;
  font-weight:700;
  font-size:1rem;
}

/* Checkbox */
body.lkit-company-auth .i-accept{
  font-size:.82rem!important;
  color:var(--auth-muted);
  line-height:1.45;
}
body.lkit-company-auth .form-box .i-accept label{
  padding-left:2rem!important;
  cursor:pointer;
}
body.lkit-company-auth .alert{
  border-radius:12px;
  border:none;
  font-size:.9rem;
}

/* Select2 on register */
body.lkit-company-auth .company-register .select2-container--default .select2-selection--single{
  height:48px!important;
  border-radius:10px!important;
  border:1.5px solid rgba(46,64,86,.12)!important;
  background:#f7f9fc!important;
}
body.lkit-company-auth .company-register .select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height:46px!important;
  padding-left:1rem!important;
  color:var(--auth-ink)!important;
}
body.lkit-company-auth .company-register .select2-container--default .select2-selection--single .select2-selection__arrow{
  height:46px!important;
}
body.lkit-company-auth .company-register .select2-container--default.select2-container--focus .select2-selection--single,
body.lkit-company-auth .company-register .select2-container--default.select2-container--open .select2-selection--single{
  border-color:rgba(255,77,154,.55)!important;
  box-shadow:0 0 0 4px rgba(255,77,154,.12);
  background:#fff!important;
}

@media (max-width:991px){
  body.lkit-company-auth .lkit-auth-grid,
  body.lkit-company-auth .lkit-auth-grid--login{
    grid-template-columns:1fr;
  }
  /* Login: form first, benefits below */
  body.lkit-company-auth .lkit-auth-grid--login .lkit-auth-form-col{order:1}
  body.lkit-company-auth .lkit-auth-grid--login .lkit-auth-benefits{order:2;margin-top:.35rem}
  /* Signup/other: keep benefits/details above the form */
  body.lkit-company-auth .details{order:-1}
  body.lkit-company-auth .company-register .col-md-5 .details{margin-bottom:1rem}
}
@media (max-width:575px){
  body.lkit-company-auth .lkit-auth-shell{padding:1.1rem .75rem 2rem}
  body.lkit-company-auth .form-top,
  body.lkit-company-auth .form-bottom{padding-left:1.1rem!important;padding-right:1.1rem!important}
  body.lkit-company-auth .lkit-auth-top{padding:.7rem .9rem}
  body.lkit-company-auth .details li:hover,
  body.lkit-company-auth .lkit-auth-benefits li:hover{transform:none}
}
@media (prefers-reduced-motion:reduce){
  body.lkit-company-auth .form-box,
  body.lkit-company-auth .form-control,
  body.lkit-company-auth .btn,
  body.lkit-company-auth .details li{transition:none!important}
  body.lkit-company-auth .form-bottom form button.btn:hover,
  body.lkit-company-auth .form-control:focus{transform:none}
}
