﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary: #1e40af;
    --primary-dark: #1e293b;
    --primary-light: #3b82f6;
    --amber: #f59e0b;
    --emerald: #10b981;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

body {
    background: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid var(--slate-200);
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emblem {
    width: auto;
    height: 60px;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-light)); */
    /* border-radius: 8px; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2); */
}

    .emblem i {
        color: white;
        font-size: 24px;
    }

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    padding-left: 15px;
}

.logo-text p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-500);
    font-weight: 700;
    padding-left: 15px;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--slate-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-link i {
        font-size: 15px;
    }

    .nav-link:hover {
        background: var(--slate-100);
        color: var(--primary);
    }

    .nav-link.active {
        /*        background: var(--primary);*/
        background: #184044;
        color: white;
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--slate-600);
    cursor: pointer;
    padding: 5px;
}


/* Main Container - 40/60 Ratio */
.main-container {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 130px);
    overflow: hidden;
}

/* Left Sidebar - 40% */
.sidebar {
    width: 45%;
    /*    background: var(--slate-900);*/
    background: #184044;
    color: white;
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

    .sidebar::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.1));
        border-radius: 50%;
        filter: blur(40px);
    }

.sidebar-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-icon {
    width: 40px;
    height: 40px;
    /*    background: var(--primary);*/
    background: #a96a00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
}

    .section-icon i {
        font-size: 18px;
        color: white;
    }

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

/* Instructions */
.instructions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruction-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.instruction-number {
    width: 26px;
    height: 26px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--emerald);
}

.instruction-content p {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}

/* Notes */
.notes-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.note-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 10px;
    /*    border-left: 4px solid var(--amber);*/
    border-left: 4px solid #a96a00;
    transition: transform 0.2s;
}

    .note-item:hover {
        transform: translateX(5px);
    }

.note-icon {
    /*    color: var(--amber);*/
    color: #a96a00;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.note-text {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

/* App Download */
.download-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.download-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px 6px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    text-align: left;
    gap: 10px;
}

    .download-card:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

.download-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
}

    .download-icon i {
        font-size: 20px;
        color: white;
    }

.download-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.download-info p {
    font-size: 12px;
    color: var(--slate-400);
}

/* Right Content - 60% */
.main-content {
    width: 55%;
    /*background: var(--slate-50);*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(../../assets/media/login-bg.jpg) center / cover no-repeat;
}

.login-wrapper {
    width: 100%;
    max-width: 600px;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.gradient-bar {
    height: 5px;
    width: 100%;
    background: linear-gradient(to right, var(--primary), #60a5fa, var(--amber));
    display: none;
}

.card-header {
    padding: 35px 35px 20px;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.login-subtitle {
    color: var(--slate-500);
    font-size: 15px;
}

.login-form {
    padding: 20px 35px 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-600);
    margin-bottom: 10px;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    font-size: 18px;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid var(--slate-200);
    border-radius: 12px;
    font-size: 15px;
    background: var(--slate-50);
    transition: all 0.3s;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        background: white;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

.password-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--slate-600);
}

.footer-logo-section ul li img {
    height: 40px;
}

.footer-logo-section ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

.forgot-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .forgot-link:hover {
        text-decoration: underline;
    }

.captcha-section {
    background: var(--slate-100);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-box {
    flex: 1;
    background: white;
    border: 2px solid var(--slate-200);
    border-radius: 6px !important;
    padding: 0px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--slate-700);
    user-select: none;
    font-family: monospace;
    overflow: hidden;
}

.Login-ek .main-container {
    min-height: auto;
}

.login-form a.text-white.text-decoration-none {
    display: block;
    width: 100%;
    text-align: right;
    text-decoration: none;
    padding-top: 10px;
}

.captcha-refresh {
    width: 43px;
    height: 43px;
    border: 2px solid var(--slate-200);
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .captcha-refresh:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: rotate(180deg);
    }

.captcha-input {
    margin: 0px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--slate-900);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.captcha-input .form-input {
    height: 43px;
    border-radius: 6px;
}

.submit-btn:hover {
    /*    background: var(--primary);*/
    background: #244a4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.submit-btn i {
    font-size: 18px;
}

/* Professional Footer */
.footer {
    /* background: linear-gradient(135deg, #2d3748, #1a202c); */
    color: white;
    padding: 0px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    /*    padding: 0 20px;*/
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-bottom: 20px; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* margin-bottom: 20px; */
    padding: 10px 20px;
    background: #fff;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .footer-logo i {
        color: white;
        font-size: 24px;
    }

.footer-logo-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.footer-logo-text p {
    font-size: 12px;
    color: var(--slate-400);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #3e3e3e;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer-link i {
        font-size: 14px;
    }

/*    .footer-link:hover {
        color: white;
        transform: translateY(-2px);
    }*/
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    padding: 8px 20px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--slate-400);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

    .security-badge i {
        color: var(--emerald);
        font-size: 18px;
    }

    .security-badge span {
        font-size: 12px;
        color: var(--slate-300);
        font-weight: 500;
    }

/* Mobile Responsive */
@media (max-width: 1200px) {
    .sidebar {
        padding: 30px 25px;
    }

    .main-content {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        min-height: auto;
    }

    .sidebar {
        width: 100%;
        padding: 30px;
    }

    .main-content {
        width: 100%;
        padding: 40px 30px;
    }

    .download-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 99;
        flex-direction: column;
        gap: 10px;
    }

        .mobile-menu.active {
            display: flex;
        }

    .download-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .card-header,
    .login-form {
        padding: 30px 25px;
    }

    .login-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        padding: 25px 20px;
    }

    .sidebar-section {
        padding: 20px;
    }

    .main-content {
        padding: 25px 20px;
    }

    .captcha-container {
        flex-direction: column;
    }

    .captcha-box,
    .captcha-refresh {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}


.ak-login-error {
    color: #ff4d4f;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.form-control.error {
    border-color: #ff4d4f;
    box-shadow: 0 0 5px rgba(255, 77, 79, 0.3);
}

.pos-fix, .outer-load, .inner-load, .inner-load > img, .sidenav, .backdrop {
    position: fixed;
}


.inner-load {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-block;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 500px;
    min-height: 100%;
}

    .inner-load > img {
        bottom: 0;
        display: inline-block;
        left: 0;
        margin: auto;
        right: 0;
        text-align: center;
        top: 0;
        vertical-align: middle;
    }

.helpline-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.call-btn {
    text-decoration: none;
    background: var(--slate-900);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
}

    .call-btn:hover {
        background: #218838;
    }