@font-face {
  font-family: 'inter-bold';
  src: url(../font/Inter_24pt-Bold.ttf);
}
@font-face {
  font-family: 'inter-light';
  src: url(../font/Inter_24pt-Light.ttf);
}
@font-face {
  font-family: 'inter-medium';
  src: url(../font/Inter_24pt-Medium.ttf);
}
@font-face {
  font-family: 'inter-regular';
  src: url(../font/Inter_24pt-Regular.ttf);
}
@font-face {
  font-family: 'inter-semibold';
  src: url(../font/Inter_24pt-SemiBold.ttf);
}
    :root {
      --purple: #680eda;
      --purple-600: #6f2be9;
      --purple-700: #5e23c9;
      --purple-800: #4b1ca4;
      --text: #0f1222;
      --muted: #7a7f8c;
      --ring: rgba(111, 43, 233, .35);
      --border: #e8e8ef;
      --bg: #ffffff;
      --card: #ffffff;
      --shadow: 0 10px 30px rgba(20, 10, 40, .10);
        /*==================== Bikash Define Css Variable =======================*/
      /*======== Black =========*/
      --b-black-900:#1f1f1f;
      --b-black-800:#3d3d3d;
      --b-black-700:#5c5c5c;
      --b-black-600:#7a7a7a;
      --b-black-500:#999999;
      --b-black-400:#b8b8b8;
      --b-black-300:#d6d6d6;
      --b-black-200:#f5f5f5;
      --b-black-100:#fff;

      /*======== purple =========*/  
      --b-purple-900:#2c065c;
      --b-purple-800:#390878;
      --b-purple-700:#4a0a9b;
      --b-purple-600:#5f0dc6;
      --b-purple-500:#680eda;
      --b-purple-400:#863eea;
      --b-purple-300:#9a5ee6;
      --b-purple-200:#ba90ee;
      --b-purple-100:#d0b4f4;
      --b-purple-50:#f5f0f5;
    --alert-radius:12px; --alert-shadow:0 6px 16px rgba(0,0,0,.06);
    --danger-bg:#FDECEC; --danger-border:#F6CACA; --danger-text:#7A1F1F;
  /*==================== (Bikash Define Css Variable) =======================*/
    }

    * {
      box-sizing: border-box
    }

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      font-family: "inter-regular" !important;
      color: var(--text);
      background: #fafafa;
    }

    .page {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
    }

    /* LEFT AUTH PANEL */
    .auth {
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 24px;
    }

    .auth-inner {
      width: 100%;
      max-width: 440px;
      padding: 24px;
      border-radius: 16px;
      border: 1px solid #D0D5DD;
    }

    .brand {

      margin-bottom: 36px;
    }

    .brand-badge {
      /* width:44px;
      height:44px; */
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 32px;


    }

    .brand svg {
      display: block
    }

    .brand-name {
      font-weight: 800;
      font-size: 28px;
      letter-spacing: .2px;
    }

    h1 {
      margin: 0 0 8px 0;
      font-size: 28px;
      color: var(--b-black-900);
    }

    .sub {
      /* color: var(--muted); */
      color: var(--b-black-500);
      margin-bottom: 28px;
      font-size: 16px;
    }

    .field {
      margin-bottom: 16px;
    }

    .label {
      font-size: 16px;
      /* font-weight: 600; */
      margin-bottom: 8px;
      display: block;
      color: var(--b-black-800);
      font-family: 'inter-medium' !important;
    }

    .input-wrap {
      position: relative;
    }

    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="text"] {
      width: 100%;
      height: 48px;
      border-radius: 8px;
      border: 1px solid var(--border);
      padding: 0 44px 0 44px;
      outline: none;
      background: #fff;
      box-shadow: inset 0 1px 0 rgba(0, 0, 0, .02);
      transition: box-shadow .2s, border-color .2s, transform .02s;
      font-size: 14px;
      font-family: "Inter" !important;
    }

    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="text"]:focus {
      border-color: var(--purple-600);
      box-shadow: 0 0 0 4px var(--ring);
    }

    .icon-left,
    .icon-right {
      position: absolute;
      top: 0;
      height: 48px;
      width: 44px;
      display: grid;
      place-items: center;
      color: #9aa0ad;
    }

    .icon-left {
      left: 0
    }

    .icon-right {
      right: 0;
      cursor: pointer;
    }

    .row-between {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 6px;
      margin-bottom: 8px;
    }

    .link {
      font-size: 12px;
      color: var(--purple-700);
      text-decoration: none;
      font-weight: 600;
    }

    .btn {
      width: 100%;
      height: 50px;
      border: none;
      border-radius: 8px;
      background: var(--purple);
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: .2px;


    }

    .btn:active {
      transform: translateY(1px)
    }

    .or {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 12px;
      margin: 18px 0;
      color: #a0a4af;
      font-size: 18px;
    }

    .or:before,
    .or:after {
      content: "";
      height: 1px;
      background: #ececf3
    }

    .btn-ghost {
      width: 100%;
      height: 48px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: #fff;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: "Inter" !important;
      color: var(--b-black-900);
      font-size: 16px;
      /* box-shadow: var(--shadow); */
    }

    .google {
      width: 18px;
      height: 18px;
    }

    .muted {
      margin-top: 18px;
      text-align: center;
      font-size: 14px;
      /* color: #7c808b; */
      color: var(--b-black-600);
    }

    .muted a {
      color: var(--purple-700);
      font-weight: 700;
      text-decoration: none
    }

    /* RIGHT SHOWCASE */
    .showcase {
      position: relative;
      background: var(--purple);
      color: #fff;
      overflow: hidden;
      /* display: flex; */
      align-items: center;
      padding: 64px 32px;
      isolation: isolate;
      padding-top: 120px;
    }

    /* grid */
    .showcase:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(#ffffff26 1px, transparent 1px),
        linear-gradient(90deg, #ffffff26 1px, transparent 1px);
      background-size: 48px 48px, 48px 48px;
      background-position: 0 0, 0 0;
      opacity: .35;
      z-index: 0;
    }

    /* gradient flare */
    .showcase:after {
      content: "";
      position: absolute;
      inset: -20%;
      background: radial-gradient(600px 280px at 70% 20%, rgba(255, 255, 255, .25), transparent 60%);
      z-index: 0;
      pointer-events: none;
    }

    .showcase-inner {
      z-index: 1;
      max-width: 690px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .quote {
      font-size: 32px;
      line-height: 1.5;
      font-family: 'inter-bold';
      letter-spacing: .2px;
      max-width: 670px;
    }

    .author {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 14px;
      font-size: 14px;
      font-weight: 600;
    }

    .author .badge {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: #fff;
      color: var(--purple);
      box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    }

    .author small {
      display: block;
      opacity: .8;
      font-weight: 500;
      margin-top: 2px;
    }

    .dashboard-card {
      justify-self: center;
      /* width:min(680px, 90%); */
      /* background:#fff; */
      /* border-radius: 20px; */
      /* box-shadow: 0 30px 70px rgba(6, 1, 28, .35); */
      overflow: hidden;
      right: 0; 
      /* position: absolute; */
      /* border:1px solid rgba(255,255,255,.35); */
    }

    .dashboard-card img {
      overflow: hidden;
      /* right: 0;  */
      /* position: absolute; */
    }
    .fa-solid,
    .fas {
      padding-top: 16px;
      font-weight: 900;
    }


             .alert {
            padding: 15px;
            border: 1px solid transparent;
            border-radius: 4px;
            font-size: 16px;
            margin: 10px 0;
            position: relative;
          }
.btn-secondary-back {
     border-radius: 4px;
    padding: 8px 0;
    color: var(--b-black-800);
    border-color: var(--b-black-300);
    background-color: #fff;
    border: 1px solid gray;
    font-size: 14px !important;
}
          /* Success modifier */
          .alert-success {
            background-color: #d4edda;
            border-color: #c3e6cb;
            color: #155724;
          }

          .alert-danger {
            background-color: #f8d7da;
            border-color: #f5c6cb;
            color: #721c24;
          }

          .tooltip-inner {
            background-color: #000000 !important;
            color: #ffffff !important;
            padding: 12px 12px !important;
            border-radius: 6px !important;
            max-width: 320px !important;
            text-align: left !important;
            margin-left: 20px;

          }

          .bs-tooltip-right .arrow::before {
            border-right-color: #000000 !important;
          }

          .bs-tooltip-left .arrow::before {
            border-left-color: #000000 !important;
          }

          .bs-tooltip-top .arrow::before {
            border-top-color: #000000 !important;
          }

          .bs-tooltip-bottom .arrow::before {
            border-bottom-color: #000000 !important;
          }
           input::placeholder {
            color: var(--b-black-600);         /* change text color */
            font-size: 14px;     /* change font size */
          }
            .input-wrapper {
            position: relative;
            }

            .input-wrapper input {
            width: 100%;
            padding-right: 40px; /* Add space for the icon */
            }

            .input-wrapper .toggle-password1, .input-wrapper .toggle-password2 {
            position: absolute;
            top: 40%;
            right: 10px;
            transform: translateY(-50%);
            cursor: pointer;
            color: #888;
            } 
            .custom-alert {
            position: relative;
            padding: 16px 20px;
            margin: 20px auto;
            max-width: 600px;
            background-color: #cdffdfff;
            color: #856404;
            border: 1px solid #ffeeba;
            border-radius: 5px;
            font-family: Arial, sans-serif;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.3s ease-in-out;
            }

            .custom-alert strong {
            display: block;
            margin-bottom: 6px;
            font-weight: bold;
            }

            .close-btn {
            position: absolute;
            top: 10px;
            right: 14px;
            font-size: 20px;
            font-weight: bold;
            color: #856404;
            cursor: pointer;
            transition: color 0.3s ease;
            }

            .close-btn:hover {
            color: #4b3d02;
            }

            @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
            }


        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 12px 0;
          }

          .divider .line {
            flex: 1;
            height: 1px;
            background-color: #ccc;
            margin: 0 10px;
            color: var(--b-black-500);
          }

          .divider .or-text {
            white-space: nowrap;
            color: #555;
            font-weight: 500;
            padding: 0 10px;
            color: var(--b-black-500);
          }
           .author ul li{
        list-style: none;
    }
    .author ul li span {
        margin-top: 5px;
        position: absolute;
        margin-left: 10px;
        font-size: 16px;
    }
    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .page {
        grid-template-columns: 1fr
      }

      .showcase {
        display: none
      }

      .auth {
        padding: 40px 16px
      }

      .brand {
        justify-content: center
      }

      .auth-inner {
        max-width: 520px
      }
    }

    @media (max-width: 1520px) {
      .showcase-inner {
        max-width: 540px;
      }

    }

    .form-control1 {
      width: 100%;
      padding: 10px !important;
      margin: 16px 0px;
      border: 1px solid #d0d5dd;
      border-radius: 7px;
      box-sizing: border-box;
      font-size: 16px;
    }

    .form-control1:focus {
      outline: none;
      border-color: blue;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    


  .alert{
    position:relative; display:flex; align-items:flex-start; gap:.75rem;
    padding:.75rem 2.25rem .75rem .875rem; border:1px solid;
    border-radius:var(--alert-radius); box-shadow:var(--alert-shadow);
    font:14px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    animation:alertIn .18s ease-out; max-width:720px;
  }
  .alert--danger{ background:var(--danger-bg); border-color:var(--danger-border); color:var(--danger-text); }

  .alert__text{ margin:0; }

  .alert__close{
    position:absolute; top:6px; right:6px; border:0; background:transparent;
    font-size:18px; line-height:1; cursor:pointer; padding:.25rem .4rem;
    border-radius:8px; opacity:.6;
  }
  .alert__close:hover{ opacity:1; background:rgba(0,0,0,.06); }

  @keyframes alertIn{ from{opacity:.001; transform:translateY(-4px)} to{opacity:1; transform:none} }
  .alert.is-hiding{ animation:alertOut .15s ease-in forwards; }
  @keyframes alertOut{ to{opacity:0; transform:translateY(-4px)} }