:root {
    --primary-color: #0056b3;
    --secondary-color: #00a86b;
    --accent-color: #ff6b35;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
}

.login-with-news-feed {
    display: flex;
    min-height: 100vh;
}

.news-feed {
    position: relative;
    width: 60%;
    background-color: var(--primary-color);
}

.news-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.news-caption {
    position: absolute;
    bottom: 0;
    padding: 2rem;
    color: white;
    z-index: 1;
    width: 100%;
}

.banner-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.right-content {
    width: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.login-content {
    max-width: 400px;
    margin: 0 auto;
}

.brand {
    margin-bottom: 1.5rem;
}

.brand h4 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.brand small {
    color: #6c757d;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 107, 0.25);
}

.btn-success {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-success:hover {
    background-color: #008f5b;
    border-color: #008f5b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.security-badge i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.product-icons {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.product-icon {
    text-align: center;
    padding: 0.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: #f0f5fa;
    border: 1px solid #e1e8ed;
    width: 31%;
    cursor: pointer;
}

.product-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.1);
    background-color: #e6f0fa;
}

.product-icon.active {
    background-color: #e6f0fa;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.2);
}

.product-icon i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    background-color: white;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.product-icon span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-text);
    display: block;
    margin-top: 0.5rem;
}

.benefits-list {
    margin-top: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.benefits-list h5 {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.benefits-list h5:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

.benefits-list ul {
    padding-left: 0;
    color: #6c757d;
    list-style-type: none;
}

.benefits-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.info-box {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f0f5fa;
    border-left: 4px solid var(--primary-color);
}

.info-box h5 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.info-box p {
    margin-bottom: 0;
    color: #5a6169;
    font-size: 0.9rem;
}

.footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 2rem;
}

.animated-popup {
    animation: fadeInUp 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 992px) {
    .login-with-news-feed {
        flex-direction: column;
    }

    .news-feed, .right-content {
        width: 50%;
    }

    .news-feed {
        min-height: 250px;
    }

    .right-content {
        padding: 2rem 1.5rem;
    }
}