﻿/* ===========================================================
   NETGENE CRM LOGIN
   =========================================================== */
html,
body {
    height: 100%;
/*    overflow: hidden;*/
}

#app {
    height: 100%;
}

.login-page {
    height: 100vh;
    overflow: hidden;
}


.login-page {
    min-height: 100vh;
    background: var(--tblr-bg-surface);
    overflow: hidden;
    margin:0px;
    padding:0px;
}

/* ===========================================================
   LEFT PANEL
   =========================================================== */

.login-left {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg,#206bc4 0%,#4f8cff 45%,#6aa9ff 100%);
}

    .login-left::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -220px;
        left: -150px;
        filter: blur(6px);
    }

    .login-left::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        bottom: -160px;
        right: -120px;
    }

.login-left-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 70px;
    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 60px;
}

.login-brand {
    animation: slideInLeft .8s ease;
}

.login-logo {
    width: 80px;
    height: auto;
}

.login-brand h1 {
    font-size: 42px;
    letter-spacing: 2px;
}

.login-brand h3 {
    font-weight: 300;
}

.login-brand p {
    max-width: 600px;
    line-height: 1.8;
    font-size: 16px;
}

/* ===========================================================
   FEATURES
   =========================================================== */

.login-features {
/*    margin-top: 50px;*/
    margin-top: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 17px;
    margin-bottom: 14px;
    opacity: .95;
    transition: .25s;
}

    .feature-item i {
        font-size: 24px;
    }

    .feature-item:hover {
        transform: translateX(8px);
        opacity: 1;
    }

.login-copy {
    opacity: .7;
    font-size: 14px;
}

/* ===========================================================
   RIGHT PANEL
   =========================================================== */

.login-right {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--tblr-bg-surface);
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    animation: fadeInUp .65s ease;
}

    .login-card .card {
        border-radius: 18px;
        border: none;
    }

    .login-card .card-body {
        padding: 34px;
    }

/* ===========================================================
   MOBILE LOGO
   =========================================================== */

.login-logo-mobile {
    width: 70px;
    display: none;
}

/* ===========================================================
   FORM
   =========================================================== */

.form-control-lg {
    height: 52px;
    font-size: 15px;
}

.input-group-text {
    cursor: pointer;
}

.validation-message {
    color: var(--tblr-danger);
    font-size: 13px;
    margin-top: 4px;
}

.btn-primary {
    transition: .25s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.alert {
    border-radius: 10px;
}

/* ===========================================================
   FORGOT PASSWORD
   =========================================================== */

a.small {
    text-decoration: none;
}

    a.small:hover {
        text-decoration: underline;
    }

/* ===========================================================
   ANIMATIONS
   =========================================================== */

@keyframes fadeInUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width:991px) {

    .login-left {
        display: none !important;
    }

    .login-logo-mobile {
        display: inline-block;
    }

    .login-card {
        max-width: 500px;
    }
}

@media (max-width:767px) {

    .login-card .card-body {
        padding: 30px;
    }

    .login-right {
        padding: 15px;
    }

    .login-card {
        max-width: 100%;
    }
}

/* ===========================================================
   DARK MODE
   =========================================================== */

[data-bs-theme=dark] .login-right {
    background: var(--tblr-bg-surface);
}

[data-bs-theme=dark] .login-card .card {
    background: var(--tblr-bg-surface-secondary);
}







/* ==========================================
   BRAND HEADER
   ========================================== */

.brand-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

    .brand-text h1 {
        margin: 0;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: 1px;
        color: #fff;
    }

.brand-tagline {
    margin-top: 6px;
    font-size: 18px;
    color: rgba(255,255,255,.80);
    font-weight: 400;
}

.brand-description {
    margin-top: 20px;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.82);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,.96);
    transition: all .25s ease;
}

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .feature-item:hover {
        transform: translateX(6px);
    }

.feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

    .feature-icon svg {
        width: 20px;
        height: 20px;
        stroke: #fff;
        stroke-width: 2;
    }   