:root {
    --primary: #0F4C81;
    --secondary: #1D9BF0;
    --success: #4CAF50;
    --warning: #F4B400;
    --white: #ffffff;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background: linear-gradient(135deg,
            #0F4C81 0%,
            #1D9BF0 35%,
            #4CAF50 70%,
            #F4B400 100%);
}

.bg-overlay {
    min-height: 100vh;
    background: rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
}

.glass-card {
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.left-panel {
    background: linear-gradient(180deg,
            #0F4C81,
            #1D9BF0);
    color: white;
    padding: 50px 35px;
}

.logo-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.logo-circle i {
    font-size: 60px;
    color: var(--primary);
}

.system-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.7;
}

.right-panel {
    padding: 50px;
}

.welcome-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary);
}

.stat-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
}

.btn-login {
    background: var(--primary);
    color: white;
    padding: 15px;
    border-radius: 15px;
    font-weight: 600;
    border: none;
    transition: .3s;
}

.btn-login:hover {
    transform: translateY(-3px);
    background: #08365d;
    color: white;
}

.btn-register {
    background: var(--success);
    color: white;
    padding: 15px;
    border-radius: 15px;
    font-weight: 600;
    border: none;
    transition: .3s;
}

.btn-register:hover {
    transform: translateY(-3px);
    background: #3a913e;
    color: white;
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255, 255, 255, .15);
    padding: 10px;
    border-radius: 10px;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 25s linear infinite;
    color: white;
    font-weight: 500;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer {
    color: white;
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
}

@media(max-width:992px) {

    .left-panel {
        text-align: center;
    }

    .system-title {
        font-size: 22px;
    }

    .welcome-title {
        font-size: 28px;
    }

    .right-panel {
        padding: 30px;
    }

}