.login-container {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: white;
    max-width: 550px;
}

.login-header {
    margin-bottom: 48px;
}

.login-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.login-header p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.login-content {
    display: flex;
    flex-direction: column;
}

.feature-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-item svg {
    color: var(--success-color);
    min-width: 24px;
}

.btn-login {
    width: 100%;
    padding: 16px 24px;
    background: #2f2f2f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.btn-login:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-login svg {
    width: 20px;
    height: 20px;
}

.login-footer {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.login-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: white;
}

.illustration-content {
    max-width: 500px;
}

.illustration-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.illustration-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }

    .login-box {
        max-width: 100%;
        padding: 40px;
    }

    .login-illustration {
        padding: 40px;
        min-height: 300px;
    }

    .illustration-content h2 {
        font-size: 32px;
    }

    .illustration-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

    .login-header h1 {
        font-size: 28px;
    }

    .login-illustration {
        padding: 30px 20px;
    }

    .illustration-content h2 {
        font-size: 24px;
    }
}
