    :root {
      --primary: #4c6fff;
      --primary-soft: #e5ebff;
      --primary-dark: #3a5ae0;
      --accent: #1ec8b2;
      --accent-dark: #17a693;
      --text-main: #1f2933;
      --text-muted: #6b7280;
      --card-bg: rgba(255, 255, 255, 0.98);
      --border-soft: #e5e7eb;
      --error: #ef4444;
      --success: #10b981;
      --warning: #f59e0b;
      --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.16);
      --shadow-strong: 0 32px 64px rgba(15, 23, 42, 0.24);
      --radius-lg: 18px;
      --radius-md: 12px;
      --transition-fast: 0.18s ease-out;
      --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
     .btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    
.logo_box{
    width: 80px;
    height: 80px;
    background: #a5a7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: -77px;
    transform: translate(0px, -43px);
    position: relative;
    z-index: 10000;
    padding: 3px;
}    

.logo_box img{
    width:100%;
    height:100%;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      /*font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;*/
      color: var(--text-main);
      /*background: radial-gradient(circle at top left, #e0f7ff 0, #f5f7ff 40%, #edf2ff 80%);*/
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.5;
      position: relative;
    }

    .page-wrapper {
      /*width: 100%;*/
      max-width: 1080px;
      padding: 20px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /*.login-shell {*/
    /*  display: grid;*/
    /*  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);*/
    /*  gap: 0;*/
    /*  background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);*/
    /*  border-radius: 28px;*/
    /*  box-shadow: var(--shadow-soft);*/
    /*  overflow: hidden;*/
    /*  position: relative;*/
    /*  isolation: isolate;*/
    /*  min-height: 620px;*/
    /*  backdrop-filter: blur(10px);*/
    /*}*/

    /* Floating background elements */
    .floating-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
    }

    .floating-element {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.4;
      animation: float 20s infinite linear;
    }

    .floating-element:nth-child(1) {
      width: 220px;
      height: 220px;
      background: #60a5fa;
      top: -60px;
      left: -40px;
      animation-delay: 0s;
    }

    .floating-element:nth-child(2) {
      width: 260px;
      height: 260px;
      background: #22c1c3;
      bottom: -80px;
      right: -40px;
      animation-delay: -5s;
    }

    .floating-element:nth-child(3) {
      width: 180px;
      height: 180px;
      background: #a855f7;
      top: 40%;
      left: 20%;
      animation-delay: -10s;
    }

    .floating-element:nth-child(4) {
      width: 150px;
      height: 150px;
      background: #f97316;
      bottom: 30%;
      right: 20%;
      animation-delay: -15s;
    }

    @keyframes float {
      0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.45;
      }
      25% {
        transform: translate3d(20px, -20px, 0);
        opacity: 0.6;
      }
      50% {
        transform: translate3d(-15px, 15px, 0);
        opacity: 0.7;
      }
      75% {
        transform: translate3d(10px, 25px, 0);
        opacity: 0.5;
      }
    }

    /* Left illustration / info */
    .pane-left {
      padding: 32px 32px 32px 36px;
      border-right: 1px solid var(--primary-soft);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      background: radial-gradient(circle at top, #e0f2ff 0, #ffffff 60%);
      overflow: hidden;
      height: 559px;
      margin-top: 40px;
      border-radius: 18px;
    }

    .brand-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: conic-gradient(from 160deg, #4c6fff, #22c1c3, #4c6fff);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 22px;
      box-shadow: 0 10px 24px rgba(37, 99, 235, 0.36);
      animation: pulseLogo 2.4s infinite ease-in-out;
      position: relative;
      z-index: 2;
    }

    @keyframes pulseLogo {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.36);
      }
      50% {
        transform: scale(1.06);
        box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
      }
    }

    .brand-title {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #1e293b;
    }

    .brand-sub {
      font-size: 12px;
      color: var(--text-muted);
    }

    .hero-copy {
      margin-top: 36px;
      position: relative;
      z-index: 2;
    }

    .hero-heading {
      font-size: 26px;
      font-weight: 700;
      line-height: 1.25;
      color: #0f172a;
      margin-bottom: 12px;
    }

    .hero-heading span {
      color: var(--primary);
    }

    .hero-text {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 340px;
    }

    .stats-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 26px;
      font-size: 12px;
    }

    .pill {
      padding: 6px 10px;
      border-radius: 999px;
      background: #eef2ff;
      color: #4f46e5;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 500;
    }

    .pill span.dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
    }

    .mini-stat {
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid #e5e7eb;
    }

    .mini-stat strong {
      display: block;
      font-size: 14px;
    }

    .features-list {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .feature-icon {
      width: 24px;
      height: 24px;
      border-radius: 6px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 12px;
    }

    /* Right login pane */
    .pane-right {
      padding: 32px 36px 32px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(150deg, #ffffff 0%, #f3f4ff 70%);
      position: relative;
    }

.login_card {
      margin-top: 40px;
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-soft);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(8px);
      transform: translateY(0);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast);
      position: relative;
      z-index: 2;
    }

    .login_card:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    }

.login-title {
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 4px;
    padding-top: 20px;
}

.tag-line {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 4px;
}

    .login-subtitle {
      font-size: 15px;
      color: var(--text-muted);
      padding-bottom:10px;
      text-align:center;
    }

    .form-group {
      margin-bottom: 14px;
      position: relative;
    }

    .form-label {
      font-size: 12px;
      font-weight: 600;
      color: #4b5563;
      margin-bottom: 4px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .form-label small {
      font-weight: 400;
      color: var(--text-muted);
    }

    .input-wrapper {
      position: relative;
    }

    .input-field {
      width: 100%;
      padding: 9px 10px 9px 34px;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      font-size: 13px;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color 0.15s;
      background-color: #f9fafb;
    }

    .input-field:focus {
      outline: none;
      border-color: var(--primary);
      background-color: #ffffff;
      box-shadow: 0 0 0 1px rgba(76, 111, 255, 0.18);
    }

    .input-field.error {
      border-color: var(--error);
      box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.18);
    }

    .input-field.success {
      border-color: var(--success);
      box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.18);
    }

    .input-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 14px;
      color: #9ca3af;
      transition: color var(--transition-fast);
    }

    .input-field:focus + .input-icon {
      color: var(--primary);
    }

    .input-action {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      color: #6b7280;
      cursor: pointer;
      user-select: none;
      transition: color var(--transition-fast);
    }

    .input-action:hover {
      color: var(--primary);
    }

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

    .checkbox {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #4b5563;
      cursor: pointer;
    }

    .checkbox input {
      width: 14px;
      height: 14px;
      accent-color: var(--primary);
      cursor: pointer;
    }

    .link {
      font-size: 12px;
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: color var(--transition-fast);
    }

    .link:hover {
      text-decoration: underline;
      color: var(--primary-dark);
    }

    .btn-primary {
      width: 100%;
      border: none;
      border-radius: 999px;
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      background: linear-gradient(135deg, var(--primary), #6366f1);
      color: #ffffff;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter 0.12s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
      filter: brightness(1.02);
    }

    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 10px 26px rgba(79, 70, 229, 0.3);
    }

    .btn-primary:after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.5);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%);
      transform-origin: 50% 50%;
    }

    .btn-primary:focus:not(:active)::after {
      animation: ripple 1s ease-out;
    }

    @keyframes ripple {
      0% {
        transform: scale(0, 0);
        opacity: 0.5;
      }
      100% {
        transform: scale(20, 20);
        opacity: 0;
      }
    }

    .login-footer {
      margin-top: 12px;
      font-size: 14px;
      color: var(--text-muted);
      text-align: center;
    }

    .login-footer span {
      color: var(--primary);
      font-weight: 500;
    }

    /* Notification */
    .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      background: white;
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      gap: 10px;
      transform: translateX(150%);
      transition: transform var(--transition-smooth);
      z-index: 1000;
      max-width: 320px;
    }

    .notification.show {
      transform: translateX(0);
    }

    .notification.error {
      border-left: 4px solid var(--error);
    }

    .notification.success {
      border-left: 4px solid var(--success);
    }

    .notification.warning {
      border-left: 4px solid var(--warning);
    }

    .notification-icon {
      font-size: 18px;
    }

    .notification.error .notification-icon {
      color: var(--error);
    }

    .notification.success .notification-icon {
      color: var(--success);
    }

    .notification.warning .notification-icon {
      color: var(--warning);
    }

    .notification-content {
      flex: 1;
    }

    .notification-title {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .notification-message {
      font-size: 12px;
      color: var(--text-muted);
    }

    .notification-close {
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 14px;
      padding: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      transition: background-color var(--transition-fast);
    }

    .notification-close:hover {
      background-color: #f3f4f6;
    }

    /* Loading state */
    .btn-primary.loading {
      pointer-events: none;
      color: transparent;
    }

    .btn-primary.loading:after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      border: 2px solid transparent;
      border-top-color: #ffffff;
      border-radius: 50%;
      animation: button-loading-spinner 1s ease infinite;
    }

    @keyframes button-loading-spinner {
      from {
        transform: rotate(0turn);
      }
      to {
        transform: rotate(1turn);
      }
    }

    /* Language selector */
    .language-selector {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 10;
    }

    .language-btn {
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid var(--border-soft);
      border-radius: 8px;
      padding: 6px 10px;
      font-size: 12px;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all var(--transition-fast);
    }

    .language-btn:hover {
      background: white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* Demo credentials */
    .demo-credentials {
      margin-top: 16px;
      padding: 12px;
      background: #f0f9ff;
      border-radius: 10px;
      border-left: 3px solid var(--primary);
    }

    .demo-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .demo-info {
      font-size: 11px;
      color: var(--text-muted);
    }

    /* Security indicator */
    .security-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .security-icon {
      color: var(--success);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .login-shell {
        grid-template-columns: minmax(0, 1fr);
      }
      .pane-left {
        border-right: none;
        border-bottom: 1px solid var(--primary-soft);
        padding: 22px 22px 18px;
      }
      .pane-right {
        padding: 20px 22px 24px;
      }
    }

    @media (max-width: 640px) {
      body {
        padding: 8px;
      }
      .page-wrapper {
        padding: 0;
        flex-flow:column;
        flex-direction: column-reverse;
      }
      
      .pane-left{
          margin-top:unset !important;
      }
      
      .login-shell {
        border-radius: 18px;
      }
      .hero-heading {
        font-size: 20px;
      }
      .brand-header {
        gap: 10px;
      }
      .brand-logo {
        width: 44px;
        height: 44px;
        font-size: 18px;
      }
      .notification {
        right: 10px;
        left: 10px;
        max-width: none;
      }
    }