@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow-x: hidden;
}

.login-split-container {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
    justify-content: stretch;
    background: none;
}

.login-left {
    flex: 1;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 2;
    position: static;
    width: 100%;
}

.login-right {
    flex: 1.2;
    background: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-card-modern {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 16px 48px 0 rgba(60,60,120,0.16);
    padding: 3.5rem 3rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s;
    border: none;
    backdrop-filter: none;
    margin-top: 2.5rem;
    border-top: 4px solid #667eea;
    border-bottom: 4px solid #667eea;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

.login-card-banner {
    width: 100%;
    height: 54px;
    background: linear-gradient(90deg, #FFD600 0%, #FFEA70 100%);
    border-radius: 32px 32px 0 0;
    position: absolute;
    top: -32px;
    left: 0;
    z-index: 1;
    box-shadow: 0 4px 16px #FFD60033;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.login-logo-modern {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border: none;
    margin-bottom: 1.2rem;
    position: static;
    overflow: visible;
    padding: 0;
}

.login-logo-modern i {
    color: #fff;
    font-size: 2rem;
}

.vss-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #FFD600;
    text-shadow: 2px 2px 0 #222, 0 2px 8px rgba(0,0,0,0.10);
    line-height: 1;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vss-logo-text .vss-black {
    color: #222;
    margin-left: 0.1em;
}

.login-title-modern {
    font-weight: 600;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.login-subtitle-modern {
    color: #888;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.login-form-modern {
    width: 100%;
}

.login-form-modern .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.login-form-modern .form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 0.3rem;
    display: block;
}

.login-form-modern .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.login-form-modern .form-control {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #f8f8fa;
    font-size: 1rem;
    color: #222;
    box-shadow: none;
    outline: none;
    transition: border 0.2s;
}
.login-form-modern .form-control:focus {
    border: 1.5px solid #667eea;
    background: #fff;
}

.login-btn-modern {
    width: 100%;
    background: linear-gradient(90deg, #FFD600 0%, #FFEA70 100%);
    color: #222;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px #FFD60033;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    position: relative;
    overflow: hidden;
}
.login-btn-modern:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px #FFD60055;
    background: linear-gradient(90deg, #FFEA70 0%, #FFD600 100%);
}

.login-notice-modern {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    font-size: 1rem;
    animation: fadeInUp 0.5s;
}

.login-welcome-modern {
    z-index: 2;
    text-align: center;
    max-width: 400px;
    margin-bottom: 2rem;
}

.login-welcome-modern h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}

.login-welcome-modern p {
    font-size: 1.1rem;
    color: #e0e0f0;
    margin-bottom: 1.5rem;
}

.login-svg-modern {
    width: 340px;
    max-width: 90vw;
    margin: 0 auto;
    display: block;
    animation: floatSvg 4s ease-in-out infinite;
}

@keyframes floatSvg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ERP Modules Grid */
.erp-modules-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.erp-module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 0.7rem 1.1rem;
    min-width: 80px;
    transition: background 0.2s, transform 0.2s;
}
.erp-module-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px) scale(1.05);
}
.erp-module-icon {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(102,126,234,0.18);
}
.erp-module-label {
    font-size: 0.98rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(102,126,234,0.10);
}

.login-slogan {
    margin-top: 56px;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    color: #888;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .login-split-container {
        flex-direction: column;
        padding: 2rem 0;
    }
    .login-left, .login-right {
        flex: unset;
        width: 100%;
        min-height: 320px;
    }
    .login-right {
        min-height: 220px;
        padding: 2rem 0 1rem 0;
    }
    .login-welcome-modern {
        margin-bottom: 1rem;
    }
    .login-svg-modern {
        width: 220px;
    }
    .erp-modules-list {
        gap: 0.7rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .erp-module-item {
        min-width: 60px;
        padding: 0.5rem 0.7rem;
    }
    .erp-module-icon {
        font-size: 1.2rem;
    }
    .erp-module-label {
        font-size: 0.85rem;
    }
    .login-card-modern {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        border-radius: 18px;
    }
} 