:root {


    --muted: #64748b;
    --primary: #2563eb;
    --danger: #dc2626;
    --success: #16a34a;

}

.auth-body {
  color: var(--textalt);
    font: 15px / 1.45 'Inter', Helvetica, Arial, sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  background: var(--lpurple)!important;
background: radial-gradient(circle, rgba(99, 102, 241, 1) 0%, rgba(79, 70, 229, 1) 100%)!important;
}

.auth-body input::placeholder {
  color: var(--textalt);
    font: 'Inter', Helvetica, Arial, sans-serif;
}

      .st00 {
        fill: #fff;
      }


.flash { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; }
.flash-success { background: #dcfce7; color: #166534; }
.flash-error { background: #fee2e2; color: #991b1b; }


.kpi { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.kpi .value { font-size: 28px; font-weight: bold; }
.kpi .label { color: var(--muted); margin-top: 6px; }
.auth-shell { max-width: 480px; margin: 40px auto; }
.small { color: var(--muted); font-size: 14px; }


.auth-boxed {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(40px, 12vh, 120px) 20px 20px;
}

.auth-card {
  display: block;
  padding: 25px;
  background: var(--white);
  position: relative;
  border: 0;
}

.auth-logo {
  width: 125px!important;
  height: auto!important;
  margin: 15px auto!important;
}

.auth-wrap {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
padding: 0 20px;
}

.auth-card h1 {
  font: 18px 'Inter', Helvetica, Arial, sans-serif;
  margin: 0 0 20px 0;
  padding: 0;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.auth-card label {
  display: block;
  margin: 0 0 3px 0;
  font-size: 14px;
  color: var(--textalt);
  font-weight: 600;
}

.auth-card input[type="text"], 
.auth-card input[type="email"], 
.auth-card input[type="password"] {
margin: 0 0 15px 0;
}

.auth-card button, .auth-card .btn {
  margin: 15px 0;
  padding: 10px 30px!important;
}


.pick-check {
  display: block!important;
position:relative;
  cursor: pointer;
  font-size: 22px;
  user-select: none;
  width: 25px;
  height: 25px;
  margin: 0!important;
}

.pick-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


.pick-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
background-color: var(--white);
  border: 2px solid var(--border)!important;
}

.pick-check:hover input ~ .pick-checkmark {
  background-color: var(--border);
}

.pick-check input:checked ~ .pick-checkmark {
  background-color: var(--green);
  border: 2px solid var(--green)!important;
}

.pick-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.pick-check input:checked ~ .pick-checkmark:after {
  display: block;
}

.pick-check .pick-checkmark:after {
  left: 7px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 25px auto;
  grid-column-gap: 10px;
  grid-row-gap: 8px;
  justify-items: stretch;
  align-items: center;
  margin: 5px 0;
}

.check-col span {

  font-size: 14px;
  font-weight: 500;
}
