/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30-Dec-2025, 6:39:10 PM
    Author     : nikhil
*/

:root {
  --primary: #ff6f00;
  --primary-dark: #e65100;
  --bg: #f6f7f9;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
}
/*
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}*/

/* ===== Layout ===== */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.auth-card {
  background: var(--card);
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 28px;
}

/* ===== Brand ===== */
.brand {
  text-align: center;
  margin-bottom: 24px;
}

.brand h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.brand p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* ===== Form ===== */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

/* ===== Actions ===== */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.form-actions a {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
}

.btn-primary {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* ===== Divider ===== */
.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: var(--muted);
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.divider::before { left: 0; }
.divider::after { right: 0; }

/* ===== Footer ===== */
.auth-footer {
  text-align: center;
  font-size: 14px;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* ===== Desktop Enhancement ===== */
@media (min-width: 768px) {
  .auth-wrapper {
    background: linear-gradient(
      120deg,
      #fff 50%,
      #fff7ed 50%
    );
  }
}

/*/////////////////////////////////////////*/

/* RESET */
.kv-password,
.kv-password * {
  box-sizing: border-box;
}

/* INPUT GROUP */
.kv-password .input-group {
  display: flex;
  align-items: center;
  height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

/* INPUT */
.kv-password input.form-control {
  flex: 1;
  height: 100%;
  border: 0 !important;
  padding: 0 14px;
  font-size: 14px;
  background: transparent;
  box-shadow: none !important;
}

/* EYE TOGGLE */
.kv-password .kv-toggle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* ICON */
.kv-password .kv-toggle i {
  font-size: 16px;
  color: #6b7280;
}

/* FOCUS */
.kv-password .input-group:focus-within {
  border-color: #ff6f00;
}

/* 🔥 FIX PASSWORD METER */
.kv-password .kv-meter {
  margin-top: 6px;
  width: 100%;
}

.kv-password .progress {
  height: 6px;
  border-radius: 6px;
}

.kv-password .progress-bar {
  border-radius: 6px;
}

/* TEXT LABEL (Too short / Strong) */
.kv-password .kv-meter-label {
  font-size: 12px;
  margin-top: 4px;
}
/*//////////////////////////////////////*/
/* Eye animation */
.kv-password .kv-toggle i {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Closed eye animation */
.kv-password .kv-toggle i.fa-eye-slash {
  transform: rotate(-15deg) scale(0.95);
  opacity: 0.7;
}

/* Open eye animation */
.kv-password .kv-toggle i.fa-eye {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}
.show-password-wrap {
  margin-top: 6px;
  font-size: 13px;
  color: #555;
}

.show-password-wrap label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

input[type="checkbox"] {
    display: inline-block !important;
    opacity: 1 !important;
    position: static !important;
    height: auto !important;
    width:  auto !important;
}